我想通過編寫觸發器來審計mysql.user表中的權限更改。mysql:我們不能在系統表上創建觸發器嗎?
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]?
在此先感謝。