Hi everyone,
I'm having problems to migrate an utf8 database to another server... Each source and destination table has a "DEFAULT CHARSET=utf8"
.
I use mysqldump to dump data and mysql < file.sql
to import but when in the source table i have "España", in the destination i get "España".
I read some guides, i used --default-character-set=latin1
to export and import, but the problem remains.
I also tried a --default-character-set=utf8
to import, but the result is: "Espa", data is truncated to the first occurrence of a multibyte char.
I need help!
Thank you in advance