Skip to content

Instantly share code, notes, and snippets.

@BenjaminGuV
Created July 2, 2017 16:21
Show Gist options
  • Save BenjaminGuV/2418269e124124d46b0ec73b3cf70ab3 to your computer and use it in GitHub Desktop.
Save BenjaminGuV/2418269e124124d46b0ec73b3cf70ab3 to your computer and use it in GitHub Desktop.
Clonar base de datos
mysqldump -u {USERNAME} -p {DBCLON} > dump.sql
mysqladmin -u {USERNAME} -p create {NEWDB}
mysql -u {USERNAME} -p {NEWDB} < dump.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment