Created
November 8, 2023 14:06
-
-
Save SimpleBackups/febe9cd4974abb8181b394316d97dc22 to your computer and use it in GitHub Desktop.
Backup & Restore MySQL mysqldump
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find current msqldump binary | |
which mysqldump | |
# Check mysqldump version | |
mysqldump --version | |
# Get mysqdump man | |
mysqldump --version | |
# Dump Specific MySQL Tables from a database | |
mysqldump -u username -p db_cooper mystery cash > file_name.sql | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment