• Hi,

    Here is solution:-

    1) Source :- Flat file use DT_STR for Date column

    2) Derived Column :- Replace this with using

    SUBSTRING([Column 2],4,4) + "/" + SUBSTRING([Column 2],5,2) + "/" + SUBSTRING([Column 2],7,2)

    and use DT_DATE IN Datatype

    3) Destination :- Use datetime as datatype for date

    Run it

    Thanks!