mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:02:08 +02:00
310 B
310 B
mysqldump
Backups MySQL databases.
- Create a backup, user will be prompted for a password:
mysqldump -u {{user}} --password {{database_name}} -r {{filename.sql}}
- Restore a backup, user will be prompted for a password:
mysql -u {{user}} --password -e "source {{filename.sql}}" {{database_name}}