I am working with SSIS and trying to import data from MySql to SQL Server. I am having issues trying to convert mySql datetimes to SQL Server Datetimes. Any suggestions?
A:
What is the issue? Which SSIS data type are you using? DT-DBTIMESTAMP
should work for both.
Damir Sudarevic
2009-12-16 23:18:20
A:
Can you provide an example of the error or problem? I found some values in MySQL were out of range to SQL Server. In these instances, I used a NULLIF on the MySQL side to remove the bad values first. Rafal Ziolkowski's solution of converting to strings could work as well, but I personally would prefer to push the conversion off to the MySQL query if it is only impacting data columns.
Registered User
2009-12-17 00:57:25