show grants for charm@'localhost';
---------------------+
| Grants for charm@localhost |
+-----------------------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'charm'@'localhost' IDENTIFIED BY PASSWORD '*EDD1CD76B1331E363B2BAED3F0B7EAF28559FBEWD' |
| GRANT ALL PRIVILEGES ON `charmstyle_com`.`charmstyle_com` TO 'charm'@'localhost'
我用过
grant all on charmstyle_com to charm@'localhost' IDENTIFIED BY 't1q4gytrur';
flush privileges;
然后我导入数据库,它显示错误:
ERROR 1142 (42000) at line 29: CREATE command denied to user 'charm'@'localhost' for table 'adminnotification_inbox'
答案 0 :(得分:28)
您仅将用户权限授予'charmstyle_com'数据库中的'charmstyle_com'表。您可能想要的是为'charmstyle_com'(或至少'adminnotification_inbox'表)中的所有表授予权限
GRANT ALL PRIVILEGES ON `charmstyle_com`.* TO 'charm'@'localhost'
替代地
GRANT ALL PRIVILEGES ON `charmstyle_com`.`adminnotification_inbox`
TO 'charm'@'localhost'