I am getting confusion when loading data from staging to target for the date column by using ssis as ETL tool. Staging:
varchar (datatype)-'09/05/2017'
Target:
conversion transformation is used to convert to date datatype.Now records like
09/05/2017
.
But while loading to final table Record is like 2017-09-05 00:00:00
which is datetime datatype.
Actual expected result:2017-05-09 00:00:00
Note:OTHER records are inserted with correct format.