I'm trying to construct an SSIS package where one of the columns is a DT_DBDataTimeStamp format.
My problems is that I have to convert this to a DD/MM/YYYY format and I can't use a C# script.
I'm trying to use a derived column by having difficulty in getting the correct format.
I've tried Convert(varchar, Date_Column, 103) - doesn't work. I've tried DAY(Date_Column) + MONTH(Date_Column) + YEAR(Date_Column) - doesn't work.
Anybody know how I can do this?