Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

date format in bulk loader

EmuSep 19 2014 — edited Sep 24 2014

I am attempting to add a bulk loader to my apex application (apex 4.1) using the standard bulk loader add-on that comes with apex.

I am finding that I am getting date conversion errors.

If I change the column to a varchar2 I can run a to_date on all the data loaded and this works fine.  (to_date(result_datetime,'DD-MM-YYYY HH24:MI:SS'))

If I put the to_date on the values in a before trigger I still get the error.  ie :new.result_datetime:= to_date(trim(:new.result_datetime),'DD-MM-YYYY HH24:MI:SS');

Is apex trying to do the string to date conversion and if so how can I set the date format that the string is in?

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 22 2014
Added on Sep 19 2014
4 comments
1,685 views