Skip to content

Instantly share code, notes, and snippets.

@deltaepsilon
Created January 19, 2012 04:48
Show Gist options
  • Save deltaepsilon/1638018 to your computer and use it in GitHub Desktop.
Save deltaepsilon/1638018 to your computer and use it in GitHub Desktop.
Wordpress Table Dump
#Dump table
mysqldump --add-drop-table -u USERNAME -pPASSWORD TABLENAME | gzip > destination_file.sql.gz
#Input table
mysql -u USERNAME -pPASSWORD TABLENAME < destination_file.sql.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment