
Backing up a MySQL Database
Shows how to backup a MySQL database from the command line.
WARNING: Restoring from this backup will cause any existing database with the given name to be deleted prior to the restore.
1 |
mysqldump.exe --add-drop-database --databases -uYOURLOGINNAME -pYOURLOGINPASSWORD YOURDATABASENAME > YOURBACKUPNAME.sql |