I posted one proble yesterday related to data conversion. Now i am rephraising the problem as below.
I have one Text fle where i have date and Time as string. So i need to read that strin (Date + Time) And onvert that in double
We can see in the example below.
"Date" "Time" "Converted Double"
"01/31/2014" "30:00.0" to "41670.3541666667"
Now i have done conversion as below.
"Date G " , "Time G ", Concatinated_Date_Time"
"41670.0000000000","00:00.0", "01/31/2014 00:00.0",
I used followin to convert Date G (DT_NUMERIC,16,10)(DT_DATE)[Date G ]
But when i try to do the same with "Concatinated_Date_Time" It gives me error. I need "Concatinated_Date_Time" in double form (41670.548400000).
Please help me.
Thank you