I am new to SSIS, have been trying to convert the string to date. My input column string is in the format of MM.DD.yy 10.11.16 My requirement is to convert 2016-10-11 yyyy-mm-dd
Below is the expression I tried but its loading as null in the destination.
(DT_DATE)(SUBSTRING(FILE_DATE,1,2) + "-" +
SUBSTRING(FILE_DATE,4,2) + "-" + SUBSTRING(FILE_DATE,7,2))
DATETIME
value. Is your destination column / variable that needs to be transformed toyyyy-mm-dd
a string data type? – Shiva