sql server - SSIS 2008 - How to add date and time fields together -
in ssis 2008, how add date , time in derived column?
they different datatypes want end datetime field.
you should able concatenate them strings, , cast string dt_date:
http://msdn.microsoft.com/en-us/library/ms141036.aspx
for example:
(dt_date)((dt_str, 30, 1252)@mydate + " " + (dt_str, 30, 1252)@mytime)
Comments
Post a Comment