Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
897 views
in Technique[技术] by (71.8m points)

mysql: Cant we create triggers on system tables?

I am trying to audit the privilege changes in mysql.user table by writing a trigger on it.

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

Now, I am getting an error while writing like

ERROR 1465 (HY000): Triggers can not be created on system tables

Can we create a trigger on system tables, Is there any work around or it will be supported in higher versions[> 5.1.61] ?

Thanks in advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

No we can not. Even if we have the best concerned privileges are all and super

See (All) and (Super) Privileges Provided by mySql

After trying all type of privileges like

grant super on *.* to root@localhost
grant all on *.* to root@localhost

I have tried simplest trigger on different tables mysql.db and got same error

Triggers can not be created on system tables // Please accept this bitter truth

If you found anywhere that triggers can be created on system tables, simply that is wrong


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...