Talen Kylon
Talen Kylon

Reputation: 1958

MySQL Workbench Rebuidling Database From Script File

I have a script file that has a bunch of create commands, and one that has a bunch of inserts. I would like to use these commands to rebuild my database on a different PC but I am struggling with how to accomplish this.

I just installed a fresh copy of MySQL Workbench and I created a new Model. Now what?!

Thanks for the help!

Upvotes: 0

Views: 32

Answers (1)

zero298
zero298

Reputation: 26877

You should be able to rebuild your tables from the script

First, connect to the database

Connect to database

Then, open your script file

Open the script

Run the query

Run the query

After that, you should have your tables restored.

Upvotes: 1

Related Questions