1 Answer
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
Your Answer