0
votes

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

2

2 Answers

0
votes

Sounds like there might have been a database change on one of the tables. You might need to refresh the metadata on the source/destination.

0
votes

You should use advance editor and refresh the meta as well as connection manager.Please do this and let me know if still facing the issue.