| Trigger super user permission |
|
|
When you want to set super user permission for particular user in mysql then you can use the below command to set such permission.
GRANT USAGE ON *.* TO user@host IDENTIFIED BY 'password';
When a user wants to use trigger function in mysql, then you might have a make an user as a super User. In such scenario you can grant the user to access the all databases and tables as his wish only if he is an valid user.
It is a work around to allow the user to user trigger function in mysql.
|
| Mysql - Set user as a super user |
| The topic on Mysql - Trigger super user permission is posted by - Math |
Hope you have enjoyed, Mysql - Trigger super user permission . Thanks for your time.
|