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
Finally i figured it out!
i followed folowing steps.
SUBSTRING("TIME G",1,2) store in one output, SUBSTRING("TIME G",3,2) store in one output, SUBSTRING("TIME G",5,3) store in one output
ADD all using DATEADD() and type cast the output to DT_DATE as its output is DT_DBTIMESTAMP which can not be converted to DT_Numeric directlly.
Type Cast to (DT_NUMERIC) output from step 4
Thanks all
Plese let me know if its not explained well.
Thank you all