Hi i am trying to load data from a file into a table in Oracle but i am recieving a error ORA-01843: not a valid month when inserting a date.
The date in the file is held as 27-01-2014
The format in my table is set to DATE.
This is the control file.
load data
infile 'file1.csv'
append
into table my_table
fields terminated by ',' TRAILING NULLCOLS
(Case_reference, Attempt_Number, Dialled_Number, Date_Called)
Any one know where im going wrong?
Cheers