MySQL5.7.11,windows 10 系统,导入.csv格式文件出现 error1290 --secure-file-priv
我这里有一份.csv格式的数据表,根据数据表已经在数据库里建立了对应的表,当用图中的命令进行导入时,就出现了error1290的错误,并有图中的提示。我已经查阅过manual,也有人修改 --secure-file-priv的属性,但我也没找到对应的修改属性的位置在哪里,能否有人帮着解决一下?程序代码:
mysql>LOAD DATA INFILE 'E:\alimusic\mars_tianchi_user_actions\mars_tianchi_user_actions.csv' -> INTO TABLE train_info -> FIELDS TERMINATED BY ',' -> OPTIONALLY ENCLOSED BY '"' -> lines terminated by '\r\n' -> (user_id, song_id, gmt_create, action_type, ds);运行的结果为ERROR 1290 (HY000):The MySQL server is running with the --secure-file-priv option so it cannot execute this statement.