I have a table 'blog' in postgresql, and there are 7 columns in this table.
When migrate this table to mysql, I encourage an error as follows:
ERROR: Could not successfully convert USC-2 string to UTF-8 in table "blog" (column content).
Original string: "<"
the type of column "content" in postgresql is TEXT, and this column has HTML code as data. It seems that mysql migration tool can not perfectly convert HTML code to UTF-8 encoded string?
have any idea? thank you
When migrate this table to mysql, I encourage an error as follows:
ERROR: Could not successfully convert USC-2 string to UTF-8 in table "blog" (column content).
Original string: "<"
the type of column "content" in postgresql is TEXT, and this column has HTML code as data. It seems that mysql migration tool can not perfectly convert HTML code to UTF-8 encoded string?
have any idea? thank you