Using SSH the best way to copy a MySQL db from another server is:
mysqldump -h OLD_SERVER -u USER -pPASS DBNAME | mysql -u NEWUSER -pNEWPASS NEWDB
Using SSH the best way to copy a MySQL db from another server is:
mysqldump -h OLD_SERVER -u USER -pPASS DBNAME | mysql -u NEWUSER -pNEWPASS NEWDB