문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top