Skip to content

Instantly share code, notes, and snippets.

@mdkrog
Forked from ryannealmes/gist:d112483d59563bc11499
Created September 3, 2014 08:34
Show Gist options
  • Save mdkrog/bd942067686bb1edb75a to your computer and use it in GitHub Desktop.
Save mdkrog/bd942067686bb1edb75a to your computer and use it in GitHub Desktop.
MySQL Exports and Imports
Dump:
mysqldump -uUSERNAME -pPASSWORD DBTODUMP > /path/to/DUMPFILE.sql
Import:
mysql -uUSERNAME -pPASSWORD DBTOIMPORTTO < /path/to/DUMPFILE.sql/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment