Answers for "copy mysql database to another database"

0

copy db from one server to another mysql

mysqldump -uuser -ppassword myDatabase | mysql -hremoteserver -uremoteuser -premoteserverpassword
Posted by: Guest on March-26-2021
0

copy database mysql

mysqldump -u root -p db_caweb | mysql -u root -p root db_caweb_23012021;
Posted by: Guest on January-24-2021

Code answers related to "copy mysql database to another database"

Browse Popular Code Answers by Language