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

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

解决方法:

先进入MYSQL检查一下版本号:5.1或者以上的都支持。

mysql> select version()


1.由于MYSQL编译安装时默认不允许执行这个命令。

1)安装时加上 --enable-local-infile 参数就可以了执行了。

./configure --prefix=/usr/local/mysql --enable-local-infile

make

make install


2.可以在执行命中加上--local-infile=1 参数即可解决。


例如:

mysql -uroot -h127.0.0.1 -proot databaseName --local-infile=1 -e "LOAD DATA LOCAL INFILE '/home/data.txt' into table pet"

 

[注:

-uroot:登录数据库用户名

-h127.0.0.1:登录数据库密码

-proot:数据库端口,当为默认端口3306时,可省略

databaseName:数据库名

]


你可能感兴趣的:(MySQL执行报错)