web-dev-qa-db-fra.com

Commande CREATE refusée à l'utilisateur?

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' 

j'ai utilisé

grant all on charmstyle_com to charm@'localhost' IDENTIFIED BY 't1q4gytrur';
flush privileges;

puis j'importe la base de données, cela montre une erreur:

   ERROR 1142 (42000) at line 29: CREATE command denied to user 'charm'@'localhost' for table 'adminnotification_inbox'
23
37336792

Vous avez accordé les autorisations utilisateur uniquement à la table 'charmstyle_com' dans la base de données 'charmstyle_com'. Ce que vous voulez probablement, c'est accorder des autorisations à toutes les tables de 'charmstyle_com' (ou au moins la table 'adminnotification_inbox')

 GRANT ALL PRIVILEGES ON `charmstyle_com`.* TO 'charm'@'localhost' 

alternativement

 GRANT ALL PRIVILEGES ON `charmstyle_com`.`adminnotification_inbox` 
     TO 'charm'@'localhost' 
28
scibuff