I am trying to load data into some tables using sql loader. One of the columns, EXPIRATION_DATE, contains a date where most of the entries are in the form of mm/dd/yyyy
, but there are a few that are in the form of dd-mon-yy
. My current .ctl file defines the incoming data as EXPIRATION_DATE DATE "MM/DD/YYYY"
. When I run it I get an error
Record 1: Rejected - Error on table ORD9_DISC_PER_FEAT_PLAN_IMPORT, column EXPIRATION_DATE. ORA-01858: a non-numeric character was found where a numeric was expected
How can I fix this problem?