参考:https://blog.youkuaiyun.com/hju22/article/details/86632697
mysql可使用 into outfile 参数把某表中数据导出到一个文件中,例如可用以下命令把student表的数据导出到student.txt
select * into outfile ‘D:/student.txt’ from student;
执行以上mysql语句后报错:1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
首先:
用以下mysql语句 查看secure_file_priv 对应的值
show global variables like ‘%secure_file_priv%’;
mysql> show global variables like ‘%secure_file_priv%’;
±-----------------±------+
| Variable_name | Value |
±-----------------±------+
| secure_file_priv | NULL |
±-----------------±------+
1 row in set (0.00 sec)
查看 secure_file_priv 的值,默认为NULL,表示限制不能导入导出。
查看官方文档,secure_file_priv参数用于限制LOAD DATA, SELECT …OUTFILE, LOAD_FILE()传到哪个指定目录。
secure_file_priv 为 NULL 时,表示限制mysqld不允许导入或导出。
secure_file_priv 为 /tmp 时,表示限制mysqld只能在/tmp目录中执行导入导出,其他目录不能执行。
secure_file_priv 没有值时,表示不限制mysqld在任意目录的导入导出。
又因为 secure_file_priv 参数是只读参数,不能使用set global命令修改。
mysql> set global secure_file_priv=’’;
ERROR 1238 (HY000): Variable ‘secure_file_priv’ is a read only variable
解决方法
打开my.cnf 或 my.ini,加入以下语句后重启mysql。 【值最好改为指定的位置,填写空后导出的文件默认是在data目录中】
secure_file_priv=D:\PHP\phpstudy_pro\Extensions\MySQL5.7.26\file\
修改后再次执行,成功导出。
select * into outfile ‘D:/student.txt’ from student;
select*from category into outfile ‘C:/ProgramData/MySQL/MySQL Server 8.0/Uploads/cate.txt’
fields terminated by ‘,’
lines terminated by ‘\r\n’;
当尝试使用INTO OUTFILE导出MySQL数据时,遇到1290错误,原因是服务器运行在--secure-file-priv选项下,限制了数据的导入导出。通过查看secure_file_priv变量发现其值为NULL,表示禁止此操作。解决方法是修改my.cnf配置文件,设置secure_file_priv参数为指定目录,并重启MySQL服务。之后,可以成功导出数据。
1万+

被折叠的 条评论
为什么被折叠?



