Export Data from mysql Workbench 6.0

后端 未结 9 1987
无人共我
无人共我 2021-01-29 19:04

I\'m trying to export my database, using MySQL Workbench 6.0 on Windows, to send to my db instance in Amazon RDS, but i\'m getting this error:

Operation failed w         


        
9条回答
  •  伪装坚强ぢ
    2021-01-29 19:33

    This worked for me.

    Edit the file C:\Program Files\MySQL\MySQL Workbench 6.3 CE\modules\wb_admin_export_options.py (make sure you open your editor as administrator)

    find the line:

    delayed-insert":["Write INSERT DELAYED statements rather than INSERT statements.","FALSE", "BOOL", ("5.0.0", "5.7.0")],

    and put a hash “#” at the beginning of the line so that it looks like this:

    # delayed-insert":["Write INSERT DELAYED statements rather than INSERT statements.","FALSE", "BOOL", ("5.0.0", "5.7.0")],

    This will comment the line out so that Workbench won’t use this statement.

    Save and close the file.

    Start Workbench and try again.

    Reference http://dannytsang.co.uk/mysql-workbench-error-code-7/

提交回复
热议问题