Can't export my database from mysql workbench

前端 未结 13 747
既然无缘
既然无缘 2020-12-07 20:24

I am trying to export my database from MySQL Workbench but I get this during the export progress:

Running: mysqldump.exe --defaults-file=\"c:\\users

相关标签:
13条回答
  • 2020-12-07 21:15

    From Mysql-workbench version 8.0.14 you don't have the option to disable column-statistics Mysql-workbench version 8.0.13

    But you have an option to do it by enabling delete-master-logs: Mysql-workbench version 8.0.22

    • --delete-master-logs has the same effect as the "RESET MASTER" SQL command
    • RESET MASTER deletes all binary log files listed in the index file, resets the binary log index file to be empty, and creates a new binary log file. This statement is intended to be used only when the master is started for the first time.
    0 讨论(0)
提交回复
热议问题