【报错记录】MySQL向数据库中导入txt文件报错ERROR 1148 (42000): The used command is not allowed with this MySQL version

背景

想将txt文件导入到数据库中,输入LOAD DATA LOCAL INFILE "D:\dbms_lab\department.txt" INTO TABLE DEPARTMENT;但是报错ERROR 1148 (42000): The used command is not allowed with this MySQL version,原因是MySQL默认不允许用户从本地载入文件。

解决方法

首先登录到MySQL,利用show global variables like 'local_infile;'发现local_infile为OFF
在这里插入图片描述
接着输入set global local_infile=on;将其设置为ON,如下图:在这里插入图片描述
最后查询是否设置成功,再次输入show global variables like 'local_infile;'发现该值为ON了。【报错记录】MySQL向数据库中导入txt文件报错ERROR 1148 (42000): The used command is not allowed with this MySQL version_第1张图片
接下来就可以进行txt文件的导入了~

你可能感兴趣的:(安装教程,数据库,mysql,sql)