I have a DTS package where there is a Date and a Time (separate fields). I want to create 1 field out of them and continue to transform them separarely.
I've tried to concatenate them, like this:
DTSDestination("swdatetime") = DTSSource("Col002")) & DTSSource("Col003")
That didn't work so I tried this:
DTSDestination("swdatetime") = DatePart("m", DTSSource("Col002")) & "/" & DatePart("d", DTSSource("Col002")) &, etc.
Any ideas how I can accomplish this?
I've tried to concatenate them, like this:
DTSDestination("swdatetime") = DTSSource("Col002")) & DTSSource("Col003")
That didn't work so I tried this:
DTSDestination("swdatetime") = DatePart("m", DTSSource("Col002")) & "/" & DatePart("d", DTSSource("Col002")) &, etc.
Any ideas how I can accomplish this?