Skip to content

Instantly share code, notes, and snippets.

@SimpleBackups
Created November 8, 2023 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SimpleBackups/febe9cd4974abb8181b394316d97dc22 to your computer and use it in GitHub Desktop.
Save SimpleBackups/febe9cd4974abb8181b394316d97dc22 to your computer and use it in GitHub Desktop.
Backup & Restore MySQL mysqldump
# 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