SHOW GRANTS FOR CURRENT_USER;
GRANT SELECT ON mydb.mytable TO 'username'@'host';
Replace `SELECT` with the appropriate permission, `mydb.mytable` with the relevant database and table, and `'username'@'host'` with the actual username and host.
GRANT ALL PRIVILEGES ON
.
TO 'username'@'host';
Adjust `ALL PRIVILEGES` and `'username'@'host'` as needed.
FLUSH PRIVILEGES;
6. Verify that the permission change resolved the issue by attempting the originally failed operation again.
Let Dr. Droid create custom investigation plans for your infrastructure.
Book Demo