zoukankan      html  css  js  c++  java
  • Warning: Skipping the data of table mysql.event. Specify the --events option explicitly

    -- 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

  • 相关阅读:
    二分
    枚举
    dp
    bfs
    bfs
    dfs
    ipython快捷键
    虚拟机串口连接嵌入式开发板
    rtmp向IR601移植过程(无功能步骤,只有移植步骤)
    静态库和动态库
  • 原文地址:https://www.cnblogs.com/chromebook/p/4012867.html
Copyright © 2011-2022 走看看