I am trying to load the data into Oracle table using datastage direct load method. I am unable to insert the timestamp field into the table having datatype as timestamp(6). I have converted my data to the timestamp format supported by datastage.
I am getting error as unsupported type.
can anybody help me out in this?
Thanks in advance !!
Regards,
Abhijit
Last edited by abhijitr on Wed Feb 21, 2007 11:06 am, edited 1 time in total.
WHen you say direct load, you mean using the OCI Load stage? If yes then make sure the date is in the format YYYY-MM-DD 24HH:MM:SS.nnnnnn before sending it to the load stage.
If you are using the API stage and doing an INSERT, then let OCI stage take care of the format in TO_DATE() function. I think you need to provide the format YYYY-MM-DD 24HH:MM:SS.FF6
Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
I have tried that also still its giving me unsuppoted type error
IS there any way i can specify the ".ctl" file to this loader same as conventional SQL Loader in which i can specify the timestamp format till microseconds.