gpt4 book ai didi

mysql - 即使使用 --local-infile=1 也无法将大 CSV 导入 MySQL 5.6

转载 作者:行者123 更新时间:2023-11-29 03:21:42 25 4
gpt4 key购买 nike

我有一个大约 600MB 大小的 CSV 文件。我想使用 SSH 将其导入 MySQL 5.6,正如我所读,我可以在 MySQL 5.7 中使用 LOAD 命令
因此,我在连接到我的服务器上的 MySQL 时使用了 --local-infile=1 ,如下所示:

mysql -u mydb -p --local-infile=1;

然后,我像这样运行我的代码:

LOAD DATA LOCAL INFILE 'myfile.csv'
INTO TABLE mytable
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\'
(col1,col2,col3);

但我仍然收到此错误,而我到处阅读我可以使用 --local-infile=1

解决问题
ERROR 1148 (42000): The used command is not allowed with this MySQL version

你知道这是怎么回事吗?

最佳答案

它只有在服务器允许的情况下才有效:

参见:https://dev.mysql.com/doc/refman/5.6/en/load-data.html

The LOCAL keyword affects expected location of the file and error handling, as described later. LOCAL works only if your server and your client both have been configured to permit it. For example, if mysqld was started with --local-infile=0, LOCAL does not work. See Section 6.1.6, “Security Issues with LOAD DATA LOCAL”.

关于mysql - 即使使用 --local-infile=1 也无法将大 CSV 导入 MySQL 5.6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43416989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com