Can't export my database from mysql workbench

前端 未结 13 777
既然无缘
既然无缘 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:03

    I found this condition in wb_admin_export.py instead of a commented --column-statistics=0. you can remove the else False condition, or change it to else True.

    skip_column_statistics = True if get_mysqldump_version() > Version(8,
    0, 2) and self.owner.ctrl_be.target_version < Version(8, 0, 0) else
    True
    

提交回复
热议问题