Reputation: 41595
I am trying to export the DataBase i have at MySQL Workbench but I am having troubles to generate the INSERT statements on the .sql file.
I order to export the data, I do the reverse engineering for the database i want to export. Then, i go to
File / Export/ Forward Engineer SQL CREATE Script
And once in there, i select the option Generate INSERT Statements for Tables.
The result only generates the code for the create tables.
Is there any way to create the insert statements for the data?
Thanks
Upvotes: 75
Views: 159394
Reputation: 12618
If you want to export just single table, or subset of data from some table, you can do it directly from result window:
Upvotes: 14
Reputation: 374
For the latest version of MySql Workbench
Upvotes: 2
Reputation: 3585
For older versions:
Open MySQL Workbench > Home > Manage Import / Export (Right bottom) / Select Required DB > Advance Exports Options Tab >Complete Insert [Checked] > Start Export.
For 6.1 and beyond, thanks to ryandlf:
Click the management tab (beside schemas) and choose Data Export.
Upvotes: 84
Reputation: 30995
I had some problems to find this option in newer versions, so for Mysql Workbench 6.3, go to schemas and enter in your connection:
extended-inserts
Then export the data you want and you will see the result file as this:
Upvotes: 39
Reputation: 674
You can do it using mysqldump tool in command-line:
mysqldump your_database_name > script.sql
This creates a file with database create statements together with insert statements.
More info about options for mysql dump: https://dev.mysql.com/doc/refman/5.7/en/mysqldump-sql-format.html
Upvotes: 9
Reputation: 31
Go to Menu Server and Click on Data Export. There you can select the table and select the option Dump Structure and Data' from the drop-down.
Upvotes: 3
Reputation: 6439
In MySQL Workbench 6.1
.
I had to click on the Apply changes
button in the insertion panel (only once, because twice and MWB crashes...).
You have to do it for each of your table.
Generate INSERT statements for table
Upvotes: 5