0

How to duplicate a MySQL Database

Hi, is there any way to create a duplicate copy of a MySQL Database? what is the command to do so?

hebrewgranger
asked Mar 19, 2018
1 Answer
0

You can use the following command to duplicate a Database on the same mysql database instance. It is also known as database dumping process

$mysqldump -u root -p sitedb1 > db_name.sql
View More
linuxhelp
answered Jan 4, 2019
Your Answer
||||
 
100:0