mysqldump: move backup restore examples to mysql

This commit is contained in:
Marco Bonelli
2020-03-10 13:33:52 +01:00
committed by Marco Bonelli
parent 115b1d292b
commit 32558c6eb2
2 changed files with 8 additions and 8 deletions

View File

@@ -22,3 +22,11 @@
- Execute SQL statements in a script file (batch file):
`mysql -e "source {{filename.sql}}" {{database_name}}`
- Restore a database from a backup (user will be prompted for a password):
`mysql --user {{user}} --password {{database_name}} < {{path/to/backup.sql}}`
- Restore all databases from a backup (user will be prompted for a password):
`mysql --user {{user}} --password < {{path/to/backup.sql}}`