Bonjour,
Débutant mySQL, je tente une migration MS-SQL 2000 vers mySQL 5.5.
J'ai exporté, via microsoft DTS, une table de 9000 enregistrements.
Les séparateurs sont bien ceux spécifiés dans la commande "LOAD DATA INFILE".
La table product est vide.
Pour le moment je fais tout en local sur ma machine de DEV.
Lorsque je lance la commande
LOAD DATA INFILE "D:/rep1/rep2/product.txt" into table product FIELDS TERMINATED BY '\t' ENCLOSED BY '"' LINES TERMINATED BY '\r\n' IGNORE 1 LINES;
j'obtiens
Query OK, 0 rows affected (1.81 sec)
Records: 0 Deleted: 0 Skipped: 0 Warnings: 0
Quelqu'un pourrait-il m'aider?
Merci d'avance.
Partager