vote up 4 vote down star

I was given a .dump MySQL database file that I need to restore as a database on my Windows Server 2008 machine.

I tried using MySQL Administrator, but I got the following error:

The selected file was generated by mysqldump and cannot be restored by this application.

How do I get this working?

flag

65% accept rate

8 Answers

vote up 12 vote down check

I should be as simple as running this:

mysql -u<user> -p < db_backup.dump

If the dump is of a single database you may have to add a line at the top of the file:

using <database-name-here>;

If it was a dump of many databases, the using statements are already in there.

To run these commands, open up a command prompt (in Windows) and cd to the directory where the mysql.exe executable is (you may have to look around a bit for it, it'll depend on how you installed mysql, i.e. standalone or as part of a package like WAMP). Once you're in that directory, you should be able to just type the command as I have it above.

link|flag
Do I use "MySQL Command Line Client"? I've never used MySQL before. – Zack Peterson Sep 19 '08 at 21:31
I'm not sure how many databases it contains. I assume one. – Zack Peterson Sep 19 '08 at 21:32
4  
So they put a guy who's never used mysql before in charge of admin of the mysql server? sounds like a recipe for disaster :P – davr Sep 19 '08 at 21:33
Open up the dump file in a text editor, it's fairly easy to pick through, if there are any "using" statements, then its of multiple databases, if there are none, you'll have to add one at the top before you can run that command. – Justin Bennett Sep 19 '08 at 21:34
Of course the database that you put in the "using" statement will have to exist first. – Justin Bennett Sep 19 '08 at 21:35
show 1 more comment
vote up 1 vote down

When we make a dump file with mysqldump, what it contains is a big SQL script for recreating the databse contents. So we restore it by using starting up MySQL’s command-line client:

mysql -uroot -p

(where root is our admin user name for MySQL), and once connected to the database we need commands to create the database and read the file in to it:

create database new_db;
use new_db;
\. dumpfile.sql

Details will vary according to which options were used when creating the dump file.

link|flag
vote up 1 vote down

You simply need to run this:

mysql -p -u[user] [database] < db_backup.dump

If the dump contains multiple databases you should obmit the database name:

mysql -p -u[user] < db_backup.dump

To run these commands, open up a command prompt (in Windows) and cd to the directory where the mysql.exe executable is (you may have to look around a bit for it, it'll depend on how you installed mysql, i.e. standalone or as part of a package like WAMP). Once you're in that directory, you should be able to just type the command.

link|flag
vote up 3 vote down

I got it to work following these steps…

  1. Open MySQL Administrator and connect to server

  2. Select "Catalogs" on the left

  3. Right click in the lower-left box and choose "Create New Schema"

    MySQL Administrator enlarge image

  4. Name the new schema (example: "dbn")

    MySQL New Schema enlarge image

  5. Open Windows Command Prompt (cmd)

    Windows Command Prompt enlarge image

  6. Change directory to MySQL installation folder

  7. Execute command:

    mysql -u root -p dbn < C:\dbn_20080912.dump
    

    …where "root" is the name of the user, "dbn" is the database name, and "C:\dbn_20080912.dump" is the path/filename of the mysqldump .dump file

    MySQL dump restore command line enlarge image

  8. Enjoy!

link|flag
vote up -1 vote down

You can also use the restore menu in MySQL Administrator. You just have to open the back-up file, and then click the restore button.

link|flag
vote up 0 vote down

If the database you want to restore doesn't already exist, you need to create it first.

On the command-line, if you're in the same directory that contains the dumped file, use these commands (with appropriate substitutions):

C:\> mysql -u root -p secret

mysql> create database mydb;
mysql> use mydb;
mysql> source db_backup.dump;
link|flag
vote up 0 vote down

You cannot use the Restore menu in MySQL Admin if the backup / dump wasn't created from there. It's worth a shot though. If you choose to "ignore errors" with the checkbox for that, it will say it completed successfully, although it clearly exits with only a fraction of rows imported...this is with a dump, mind you.

link|flag
vote up 0 vote down

Hats off to Zack Peterson and his solution worked perfectly for me.

Thank you so much.

regards

JohnVolta

Case History: Step 1. mysql database dump was taken into .sql format from linux machine Step 2. this was brought into windows server 2003 machine, having windows version of mysql installed with mysql gui admin tools Step 3.followed zack peterson instructions as stated in his post Step 4.it worked flawlessly, without any errors, 100% sucessful

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.