I am working on creating a SSIS package to import data from MSSQL to MYSQL. I am getting the following error while executing.
[ADO NET Destination [16]] Error: The external column "<columnname>" (145) has been out of synchronization with the database column. The latest column has new length: 382 . Use advanced editor to refresh available destination columns if needed.
[SSIS.Pipeline] Error: "component "ADO NET Destination" (16)" failed validation and returned validation status "VS_NEEDSNEWMETADATA".
columnname == "lastname"
datatype of "lastname"
MSSQL - nvarchar(255)
MYSQL - varchar(255)
Thank you