To backup a specific database:
C:\Users\Allison Nighswander>mysqldump --u root -p databaseName > "Path\backup.sql"
This will dump the specified databaseName to the file path.
To backup ALL databases:
C:\Users\Allison Nighswander>mysqldump --u root -p --all-databases > "C:\Users\Allison Nighswander\Desktop\alldb.sql"
This will dump all databases to the
(
Read more... )