あなたが使ってLOAD DATA INFILE
いることを願っています。
のLOAD DATA LOCAL INFILE
代わりに使用してみてくださいLOAD DATA INFILE
。
他の問題はこれかもしれません、次のリンクをご覧ください:MySQL LOAD DATA。
MySQLにログインすると、次のようになります。
abdul@xmpp3:~/Desktop/Jiva$ mysql -uroot -p --local-infile
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 257
Server version: 5.5.29-0ubuntu0.12.04.1-log (Ubuntu)
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use mydb;
mysql> LOAD DATA LOCAL INFILE '/home/abdul/Desktop/STATISTIC_T.csv' INTO TABLE STATISTIC_T FIELDS TERMINATED BY '|' ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 1 LINES;
次にLOAD DATA LOCAL INFILE
、を使用してCSVをロードします。セキュリティ上の理由により、新しいMySQLバージョンに--local-infile
ロードする前に使用する必要がありCSV
ます。