Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save omergorur/fa2555cd98aab24b9ae64af1d594c435 to your computer and use it in GitHub Desktop.

Select an option

Save omergorur/fa2555cd98aab24b9ae64af1d594c435 to your computer and use it in GitHub Desktop.
Dump/restore MySQL database with utf8mb4 encoding
# dump
mysqldump -u user -p database --default-character-set=utf8mb4 --result-file=dump.sql
# restore
mysql -u user -p database < dump.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment