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

来源:互联网 发布:怎样装饰淘宝店铺2016 编辑:程序博客网 时间:2024/05/01 16:42

今天在使用mysql的LOAD DATA LOCAL INFILE 语法插入文件的时候,提示:ERROR 1148 (42000): The used command is not allowed with this MySQL version

原因是;如果编译安装mysql时没有指定–enable-local-infile,那么在使用上述命令时会报以上的错误:

解决方法:

解决方式有两种,一是重新编译安装加上上面的参数:

./configure --prefix=/usr/local/mysql --enable-local-infilemakemake install

二是直接用命令行执行,例如:

mysql -uroot -proot  mydb_name --local-infile=1 -e 'load  data local infile  "/home/xyw/tmp/AS.txt" into table AS_China fields terminated by "\t"  lines terminated by "\n";'mysql -uroot -proot  mydb_name --local-infile=1 -e 'load  data local infile  "/home/xyw/tmp/AS.txt" into table AS_China(Name);'

本文为Eliot原创,转载请注明出处:http://blog.csdn.net/xyw_blog/article/details/17922147

1 0
原创粉丝点击