MYSQL 5.7报错 Error Code: 1290. The MySQL server is running with the --secure-file-priv option so it..

用MySQL 5.7导出数据的时候出现报错,报错内容:

Error Code: 1290. The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

根据错误找了相关资料,发现是secure-file-priv会指定文件夹作为导出文件存放的地方,那我们可以先找出这个文件夹。

解决方法一:
在MySQL命令行界面输入一下指令:
show variables like '%secure%';

MYSQL 5.7报错 Error Code: 1290. The MySQL server is running with the --secure-file-priv option so it.._第1张图片

标注出来的即是正确的文件路径,我们将导出文件放在该目录下即可。

对于SQL指令,修改如下:

SELECT * FROM 用户明细 WHERE 性别='男'
INTO OUTFILE 'C:\\ProgramData\\MySQL\\MySQL Server 5.7\\Uploads\\man.txt'

文件即可成功导出到该目录下。

解决方法二:

进入安装路径C:\ProgramData\MySQL\MySQL Server 5.7,找到my.ini文件,修改secure-file-priv的默认保存路径。

secure_file_prive=null   -- 限制mysqld 不允许导入导出
secure_file_priv=/tmp/   -- 限制mysqld的导入导出只能发生在/tmp/目录下
secure_file_priv=' '         -- 不对mysqld 的导入 导出做限制

MYSQL 5.7报错 Error Code: 1290. The MySQL server is running with the --secure-file-priv option so it.._第2张图片




你可能感兴趣的:(数据库)