Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Warning: Skipping the data of table mysql.event

Tags:

mysql

warnings

After update of MySQL I started getting annoying warnings

Warning: Skipping the data of table mysql.event. Specify the --events option explicitly

How do I get rid of these?

like image 743
Jerzy Dz's Avatar asked Oct 23 '13 15:10

Jerzy Dz's


1 Answers

If you're not using scheduled events you can ignore this message by adding

--events --ignore-table=mysql.event

to your commandline

You can find more details at http://www.linuxbrigade.com/warning-skipping-data-table-mysql-event/

And more about MySQL Event Scheduler at http://dev.mysql.com/doc/refman/5.1/en/events.html

like image 127
Tomot Avatar answered Oct 16 '22 04:10

Tomot