Mysql – Autothesqlbackup fix error “Skipping the data of table thesql.event. Specify the –events option explicitly”

MySQLmysqldump

I need to fix the mysqldump warning "– Warning: Skipping the data of table mysql.event. Specify the –events option explicitly.".

I found that its because of not specifying whether or not to add events table in mysqldump.

I need to know how to specify the events option inside automysqlbackup config file.

Best Answer

In answer to the Server Fault question How to avoid mysqldump warning “Skipping the data of table mysql.event”:

User Shane on a bike wrote:

Modify or Create your ~/.my.cnf and create a mysqldump section by adding the following

[mysqldump]
events
ignore-table = mysql.events