ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
secure_file_priv 这个参数必须设定 不然mysql禁止数据导入,是mysql读取导入数据文件的地址。
通过下面命令查看:
mysql> show variables like 'secure%';
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
secure_file_priv 这个参数必须设定 不然mysql禁止数据导入,是mysql读取导入数据文件的地址。
通过下面命令查看:
mysql> show variables like 'secure%';
转载于:https://www.cnblogs.com/junglefish/p/6737800.html