I have a table in SQL server that I want to move to a MySQL table. However, I want to change the default encoding from latin-1 to utf-8. I've tried running the SQL Server Import and Export Wizard, which exports a csv to a file. It fails when I select a utf-8 encoding for the "Code page". It is stored as latin-1.
Anyway, I was wondering how I could export this data and import it into MySQL as utf-8? I do not want to open a text-editor and save the exported file as UTF-8.
SHOW CREATE TABLEandSELECT col, HEX(col) FROM tbl WHERE ...for some small sample. That way, we can see if it is utf16 or something else.SHOW CREATE TABLEand received aSQL_Latin1_General_CP1_CI_ASencoding.