Actions

 Language:
 RSS flow:


Restore a MySQL database


Restore a database

    mysql --user=MySQLUser --password=MySQLPassword < BackupFile.sql
This will restore the database, using "MySQLUser", and "MySQLPassword"
The restauration file for this example is BackupFile.sql

Go Back