Dear all
I am loading the data from Source (Oracle ) to Destination (Sql server 2008 R2) database
Source Column date format is
1900-01-01 00:00:00.0000000
1900-01-01 00:00:00.0000000
1976-03-15 00:00:00.0000000
1900-01-01 00:00:00.0000000
1974-06-18 00:00:00.0000000
when i load this format into sql server using SSIS i got this error
[OLE DB Destination [16]] Error: There was an error with input column "CUST_DOB" (1930) on input "OLE DB Destination Input" (29). The column status returned was: "Conversion failed because the data value overflowed the specified type.".
i have changed my datetime format to datetime2(7)
how to load the data without failure using ssis