Tips tagged mysql


4

Tip #766   Migrate MySQL Database to a new Server

Tip 669 gave a command to copy a table between remote MySQL databases, but how about if you want to copy the whole DB to a new host?

The following command will copy the database 'old_db' from the local host to 'new_db' on the specified remote host.

Read more »

5

Tip #669   Copy MySQL tables between hosts

The following command will allow you to copy a table from the MySQL database on a remote host, to a different MySQL database on your local host.

Read more »