Reputation: 3
I want to export the whole database using workbench. I keep getting the following error message. I used server>data export
option in workbench.
Upvotes: 0
Views: 2471
Reputation: 4850
This is a known bug in MySQL Workbench 6.3.5. Your options are to either (A) wait for an upcoming Workbench version to fix it, or (B) change your mysqldump binary (under User Preferences) to a different non-bundled mysqldump binary, likely one from MySQL Server 5.6.
Upvotes: 1
Reputation: 4643
You can easily dump the whole database from the command line:
mysqldump -u <db_username> -p -h <db_host> db_name > database_dump.sql
Upvotes: 0