首页 > 数据库技术 > 详细

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

时间:2016-06-17 17:14:12      阅读:423      评论:0      收藏:0      [点我收藏+]

 

[root@DB ~]# mysqldump -uroot -p123  --flush-logs --all-databases >fullbackup_sunday_11_PM.sql
-- Warning: Skipping the data of table mysql.event. Specify the --events option explicitly.

 这是因为mysqldump默认是不备份事件表的,只有加了--events才会,解决办法:加上--events --ignore-table=mysql.events参数;

[root@DB ~]# /usr/local/mysql/bin/mysqldump -uroot -p123  --events --ignore-table=mysql.events --flush-logs --all-databases >fullbackup_sunday_11_PM.sql

 

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

原文:http://www.cnblogs.com/bass6/p/5594429.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!