I have a string date value that is missing the 201 of 2019.
The string value 03189101545
which should be 03-18-(201)9 10:15:45
I did a left from a serial number variable to extract 03189
and can't quite figure out how to add back the full year.
LEFT([Serial Number],5)
I've tried a cast to date but that fails.
(DT_DBTIME)LEFT([Serial Number],5)
I though about doing a
(DT_DATE) DATEADD("yyyy", 0, (LEFT([Serial Number],5)))
but it seems to be the same problem as the cast issue.