Frenske123
Terugkerende gebruiker
- Lid geworden
- 2 jul 2007
- Berichten
- 1.267
Hoi,
Ik wil een vrij groot bestand importeren in database .sql
bevat 320.000 regels
Ik krijg met Bigdump de volgende melding:
Stopped at the line 323.
At this place the current query includes more than 300 dump lines. That can happen if your dump file was created by some tool which doesn't place a semicolon followed by a linebreak at the end of each query, or if your dump contains extended inserts or very long procedure definitions. Please read the BigDump usage notes for more infos. Ask for our support services in order to handle dump files containing extended inserts.
als oplossing vind ik o.a:
1. Open the backup sql file, with a notepad or any HTML editor, and find that line which is almost similar above, which starts with ‘INSERT INTO’
2. Highlight that line until the “VALUES” text to copy.
3. Count the followed 300 lines, then you can put a ; (semicolon) to the end of the line, and paste the line with “INSERT INTO bla-bla VALUES” in step 1.
De INSERT INTO zie ik staan maar wat wordt hier verder bedoeld is me niet heel duidelijk.
Ook iets gelezen van aanpassen voorbeeld $max_query_lines = 30000; maar deze regel zie ik niet staan
edit
Met SQL Dump Splitter bestand verkleind in gedeeltes maar bigdump geeft dan ook melding
Stopped at the line 301.
At this place the current query includes more than 300 dump lines. That can happen if your dump file was created by some tool which doesn't place a semicolon followed by a linebreak at the end of each query, or if your dump contains extended inserts or very long procedure definitions. Please read the BigDump usage notes for more infos. Ask for our support services in order to handle dump files containing extended inserts.
Ik wil een vrij groot bestand importeren in database .sql
bevat 320.000 regels
Ik krijg met Bigdump de volgende melding:
Stopped at the line 323.
At this place the current query includes more than 300 dump lines. That can happen if your dump file was created by some tool which doesn't place a semicolon followed by a linebreak at the end of each query, or if your dump contains extended inserts or very long procedure definitions. Please read the BigDump usage notes for more infos. Ask for our support services in order to handle dump files containing extended inserts.
als oplossing vind ik o.a:
1. Open the backup sql file, with a notepad or any HTML editor, and find that line which is almost similar above, which starts with ‘INSERT INTO’
2. Highlight that line until the “VALUES” text to copy.
3. Count the followed 300 lines, then you can put a ; (semicolon) to the end of the line, and paste the line with “INSERT INTO bla-bla VALUES” in step 1.
De INSERT INTO zie ik staan maar wat wordt hier verder bedoeld is me niet heel duidelijk.
Code:
INSERT INTO `test_location_city` (`Feature_int_id`, `Admin1_str_code`, `Country_str_code`, `Feature_str_name`, `Feature_dec_lat`, `Feature_dec_lon`) VALUES
(146765, 'AD02', 'AD', 'Canillo', 42.567, 1.6),
(211022, 'AD02', 'AD', 'El Tarter', 42.583, 1.65),
(230839, 'AD02', 'AD', 'Meritxell', 42.55, 1.6),
(177897, 'AD02', 'AD', 'Pas De La Casa', 42.55, 1.733),
(282835, 'AD02', 'AD', 'Ransol', 42.583, 1.633),
enz...
Ook iets gelezen van aanpassen voorbeeld $max_query_lines = 30000; maar deze regel zie ik niet staan
edit
Met SQL Dump Splitter bestand verkleind in gedeeltes maar bigdump geeft dan ook melding
Stopped at the line 301.
At this place the current query includes more than 300 dump lines. That can happen if your dump file was created by some tool which doesn't place a semicolon followed by a linebreak at the end of each query, or if your dump contains extended inserts or very long procedure definitions. Please read the BigDump usage notes for more infos. Ask for our support services in order to handle dump files containing extended inserts.
Laatst bewerkt: