Rechercher dans le manuel MySQL
7.4.4 Reloading Delimited-Text Format Backups
For backups produced with mysqldump --tab,
each table is represented in the output directory by an
.sql
file containing the
CREATE TABLE
statement for the
table, and a .txt
file containing the table
data. To reload a table, first change location into the output
directory. Then process the .sql
file with
mysql to create an empty table and process
the .txt
file to load the data into the
table:
shell> mysql db1 < t1.sql
shell> mysqlimport db1 t1.txt
An alternative to using mysqlimport to load
the data file is to use the LOAD
DATA
statement from within the
mysql client:
If you used any data-formatting options with
mysqldump when you initially dumped the
table, you must use the same options with
mysqlimport or LOAD
DATA
to ensure proper interpretation of the data file
contents:
shell> mysqlimport --fields-terminated-by=,
--fields-enclosed-by='"' --lines-terminated-by=0x0d0a db1 t1.txt
Or:
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-reloading-delimited-text-dumps.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.