I\'ve received a server error running a Data transfer component from Sql Server to MySql db. The error message reads as follows:
[MySql][ODBC 5.1 Driver][mys
Update your MySQL to 5.5.3 and use utf8mb4 for column encoding.
Force copy
Create a new table in SQLServer with the same structure as the table you need to copy
Change the new table's column nvarchar(size) -> varchar(size x 2)
Copy the data into the new table
Copy the SQLServer's data from the new table to MySQL