probleme insertion excel sous mysql
Bonjour,
Voilà j'ai crée ma base de données avec ses propres tables, et maintenant je dois insérer un fichier EXCEl dans une table que j'ai converti en fichier csv: j'ai essayé avec le load data infile mais ça ne marche pas:
Code :Sélectionner tout - Visualiser dans une fenêtre à part
LOAD DATA INFILE 'zhortext.csv' INTO TABLE TABLEBG FIELDS TERMINATED BY ';';
aussi j'ai essayé :
LOAD DATA LOCAL INFILE 'zhortext.csv' INTO TABLE tablebg
FIELDS terminated BY ';'
ENCLOSED BY '"'
LINES terminated BY '\n';
aprés ca me donne ce message d'erreur:
Citation:
ERROR 29 <HY000> FILE 'C:\ProgramDATA\MySQL\MySQL Server 5.6\data\'zhortext.csv' not found <ERR-code:2-NO such file or directory>
OU ce message d'erreur:
Citation:
ERROR 2<HY000> FILE 'zhortext.csv' not found <ERR-code:2-NO such file or directory>