How to export a mySql database to a file via the Command Line in Linux?
|
|
|
|
|
Question: How to export a mySql database to a file via the Command Line in Linux? Answer: - Open a new Terminal Window
- Type in the following command
mysqldump -uUsername -pPassword DatabaseName > outputFile.sql
- The command above will export a selected database to a file called outputFile.sql
- mysqldump = a database backup program
- -u = Username for the database
- -p = Password for the database
- DatabaseName = The database name you wish to export
|