我正在尝试通过在其上编写触发器来审核 mysql.user 表中的权限更改。
insert trigger: will capture who gave the new permissions and when
update trigger: will capture who changes the privileges from what[old privilege]
remove trigger: will capture who removed the privileges and what are they
现在,我在写作时遇到错误
ERROR 1465 (HY000): Triggers can not be created on system tables
我们可以在系统表上创建触发器吗?是否有任何解决方法或将在更高版本[> 5.1.61] 中支持?
提前致谢。