|
Hi title is pretty self explanatory! What's the best way of doing this in SSIS? I looked at data conversion but seems like it will only handle dd-mm-yyyy not with forward slashes?
(comments are locked)
|
|
Yes that is pretty similar to what i came up with, whack this in a derived column transform
(comments are locked)
|
|
You can use SUBSTRING for that SUBSTRING(datetimecol, 7,4)+ SUBSTRING(datetimecol, 3,2) + SUBSTRING(datetimecol, 1,2)
(comments are locked)
|

