Reputation: 253
I am trying to copy all the MYSQL database tables present in one schema to another using MYSQLworkbench?I read on other posts about using Dataimport
but its not clear as to how to use it?can anyone provide pointers on how to do it?is there a better tool to do this?
Upvotes: 2
Views: 9705
Reputation: 53357
The data import/export wizards are pretty straight forward: https://dev.mysql.com/doc/workbench/en/wb-admin-export-import-management.html. What you need is to specify the source for the dump you made (either from a folder or a self contained dump file). Then specify a different schema to import in and off you go.
Upvotes: 4