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

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -