Hi,
I want to transfer datetime values from a table to an other. Both are in the same database. I'm using SSIS packages.
The OLE DB Source contains a SQL script like "SELECT DATE_CREATION FROM my_table".
When I start the transfer by myself, it goes well. But sometimes, when the job executing the package runs, I have this following error message :
"There was an error with input column "DATE_CREATION" (164) on input "OLE DB Destination Input" (29). The column status returned was: "Conversion failed because the data value overflowed the specified type.". "
When I check the "Advanced Editor for OLE DB Destination", the DataType is "database timestamp [DT_DBTIMESTAMP]" for the External Column "DATE_CREATION" and "DT_DBTIMESTAMP" for the Input Column.
How can I detect the error ?
Thank you in advance for your help !