devxlogo

Commands to Backup and Restore Data onto a New Database

Commands to Backup and Restore Data onto a New Database

Command to backup:

mysqldump databaseName  backupFilename.sql

Where mysqldump?is the command, databaseName?is the name of the database and backupFilename?is the name of the file in which the data will be backed up.

In case you want to backup multiple databases, you can use the command:

mysqldump --databases databaseName1 databaseName2  backupFilename.sql

Command to restore:

mysql-prompt use databaseName  mysql-prompt source backupFilename.sql
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist