Skip to Main Content

Database Software

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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

sqlldr not loading dates - ORA-01843: not a valid month

635935Jan 2 2013 — edited Jan 2 2013
Here is my SQL Loader CTL File:

load data
infile *
Append into table SOME_FILES
fields terminated by "," Optionally Enclosed by '"'
TRAILING NULLCOLS
( FILE_NAME, FILE_SIZE INTEGER, FILE_MODIFIED DATE 'MM-DD-YYYY',FILE_RECEIVED DATE 'MM/DD/YYYY')
BEGINDATA
file.txt,361662,01-01-2012,01/01/2012



This give me an "invalid month" error message.
Record 1: Rejected - Error on table DC_GEF_834_FILES, column FILE_MODIFIED.
ORA-01843: not a valid month

If I connect using sqlplus and perform this insert command, it works
SQL> insert into SOME_FILES (FILE_NAME, FILE_SIZE, FILE_MODIFIED, FILE_RECEIVED) VALUES ('file.txt',361662,TO_DATE('01-01-2012','MM-DD-YYYY'),TO_DATE( '01/01/2012', 'MM/DD/YYYY') );

I've tried many different formats for data and for the CTL parameters, include "DATE EXTERNAL" "TIMESTAMP" and also just saying "DATE" and formatting the data to match the NLS_DATE_FORMAT parameter value. The error doesn't change.

Any ideas?

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jan 30 2013
Added on Jan 2 2013
6 comments
9,237 views