Fahim Ahmed
Fahim Ahmed

Reputation: 3

data export error mysql workbench 6.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. enter image description here

Upvotes: 0

Views: 2471

Answers (2)

Philip Olson
Philip Olson

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

chishaku
chishaku

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

Related Questions