首页 > 数据库技术 > 详细

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

时间:2014-10-09 13:41:43      阅读:294      评论:0      收藏:0      [点我收藏+]

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

mysqldump -uroot -pxxxxx --all-databases > all.sql
mysql用mysqldump导出数据库时提示“-- Warning: Skipping the data of table mysql.event. Specify the --events option explicitly.”

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

mysqldump -uroot -pxxxxx --events --ignore-table=mysql.events --all-databases > all.sql

参考URL

http://bugs.mysql.com

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

原文:http://www.cnblogs.com/chromebook/p/4012867.html

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