mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 08:22:08 +02:00
mysqldump: move backup restore examples to mysql
This commit is contained in:
parent
115b1d292b
commit
32558c6eb2
2 changed files with 8 additions and 8 deletions
|
@ -22,3 +22,11 @@
|
||||||
- Execute SQL statements in a script file (batch file):
|
- Execute SQL statements in a script file (batch file):
|
||||||
|
|
||||||
`mysql -e "source {{filename.sql}}" {{database_name}}`
|
`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}}`
|
||||||
|
|
|
@ -7,14 +7,6 @@
|
||||||
|
|
||||||
`mysqldump --user {{user}} --password {{database_name}} -r {{path/to/file.sql}}`
|
`mysqldump --user {{user}} --password {{database_name}} -r {{path/to/file.sql}}`
|
||||||
|
|
||||||
- Restore a backup (user will be prompted for a password):
|
|
||||||
|
|
||||||
`mysqldump --user {{user}} --password {{database_name}} < {{path/to/file.sql}}`
|
|
||||||
|
|
||||||
- Backup all databases redirecting the output to a file (user will be prompted for a password):
|
- Backup all databases redirecting the output to a file (user will be prompted for a password):
|
||||||
|
|
||||||
`mysqldump --user {{user}} --password --all-databases > {{path/to/file.sql}}`
|
`mysqldump --user {{user}} --password --all-databases > {{path/to/file.sql}}`
|
||||||
|
|
||||||
- Restore all databases from a backup (user will be prompted for a password):
|
|
||||||
|
|
||||||
`mysqldump --user {{user}} --password < {{path/to/file.sql}}`
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue