Welcome to my blog!

 

September 2010
M T W T F S S
« Mar    
 12345
6789101112
13141516171819
20212223242526
27282930  

Archives

Moving a MySQL Database

I have moved hosting provider, and I have had to move the database too. Here are the commands I used to shift the database from one server to another.

To export the database:

mysqldump -h DBSERVER -u DBUSER -p DBNAME > DBNAME.sql

Substituting DBSERVER with the hosts adddress, DBUSER with your MySQL username on the current server and [...]