This is a follow up to the post "Creating a UTF-8 database to work with special characters".
When you want to move your database from one server/database to another one, you generally create a sql dump file from the source database using the
This is just a heads up. When you make the connection on the destination server/database, specify the
You end up with something like:
mysql -u user -ppassword --default-character-set=utf8 database < "dump.sql"


