tags:

views:

81

answers:

2

Hello Experts,

I recieved a mysql backup without .dump as a extension from hosting provider. How do I restore that database somewhere else.

I am using linux box with mysql version 5.0 .

I have tried steps posted at http://stackoverflow.com/questions/105776/how-do-i-restore-a-mysql-dump-file but couldn't get through.

Thanks in advance.

+1  A: 

If you use phpmyadmin as a backend tool, use the 'import' feature. This is located in a popup box. To activate this popup click the 'SQL terminal' looking icon on the left hand plane and in the window which pops up head over to the 'import files' tab and upload the dump there.

dotty
+2  A: 

You can do it via command line very simple:

mysql -u USERNAME -p < DUMP_FILENAME
arno