On Windows, I was getting the following error trying to take a database dump to file:
mysqldump: [ERROR] unknown variable 'delayed-insert=FALSE'
Operation failed with exitcode 7
At the time I was using Workbench 6.3.5.
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.
Export Data from mysql Workbench 6.0
This work for me, thanks very much.
But while saving the file it is showing error message “Access denied”. What should I do?
Pingback: Export Data from mysql Workbench 6.0 - IZZIDB
Pingback: [Solved] Export Data from mysql Workbench 6.0