我试图从平面文件数据库转储数据加载到新表时遇到了一个权限错误。 我知道,文件和我的表的架构是相同的,我想调整的权限。 还有什么我应该尝试一下呢?
mysql> load data infile 'myfile.txt' into table mytable fields terminated by ',' enclosed by '"';
ERROR 1045 (28000): Access denied for user 'user'@'%'
grant all on mytable.* to 'user'@'%