get privileges on information_schema mysql

家住魔仙堡 提交于 2019-12-11 01:45:52

问题


If I open MySQL Administrator and I try to delete one event from the table events of the database information_schema I get this error:

Access denied for user 'root'@'localhost' to database 'information_schema'

What privileges do I need?


回答1:


The information_schema tables are all read only, there is no way to delete any rows there.

To drop an event, use the DROP EVENT statement.



来源:https://stackoverflow.com/questions/13588002/get-privileges-on-information-schema-mysql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!