Ajout erreur SHOW ENGINE INNODB STATUS #1227

This commit is contained in:
emorino 2019-12-16 10:56:13 +01:00
parent 4c28a6e9ee
commit f55b857489

View file

@ -806,4 +806,12 @@ MariaDB [(none)]> SET FOREIGN_KEY_CHECKS=0;
Query OK, 0 rows affected (0.00 sec)
~~~
Ne pas oublier de remettre à "1" car sinon il y a risque de réduction de performances.
Ne pas oublier de remettre à "1" car sinon il y a risque de réduction de performances.
## Erreur SHOW ENGINE INNODB STATUS >> "#1227 - Access denied; you need (at least one of) the PROCESS privilege(s) for this operation"
Il faut rajouter le droit PROCESS à l'utilisateur concerné :
~~~
MariaDB > grant USAGE, PROCESS on *.* to foo@localhost;
~~~