Reply to comment
Create trigger MySQL 5.0 - super privilege required
Submitted by Tim Hollobon on Thu, 01/08/2009 - 11:50
In one of our C++ applications we programmatically create and write a trigger to the database. The application is designed to connect to Microsoft SQL Server, Oracle and MySQL 5.0.
When connected to MySQL 5.0, when the code attempted to create the trigger the following error was returned:
ERROR 1227 (42000): Access denied; you need the SUPER privilege for this operation
To grant the super privilege to the MySQL user, use the MySQL Query browser and connect to the database that the user needs super privilege. Then execute the following command:
grant super on *.* to Tim
If you ever want to revoke the super privilege from the user you can use:
revoke super on *.* from Tim

Recent comments
14 hours 2 min ago
1 day 13 hours ago
3 days 14 hours ago
4 days 4 hours ago
4 days 15 hours ago
4 days 20 hours ago
5 days 46 min ago
1 week 21 hours ago
1 week 1 day ago
1 week 4 days ago