sqlldr date format
Dear buddies,
I am loading some files from text file to Oracle.
The table has a column with date format.
The text file has dates which are in such formats: 29-05-2007 15:27:25.147
I tried altering the table to timestamp but even that only accepts 2 digits for the millisecond and I tried setting
ALTER SESSION SET NLS_DATE_FORMAT = 'DD-MON-YYYY HH24:MI:SSXFF'; which is not possible. Only possible to set the milliseconds to 2 digits.
Please advice on how I can go about this.
Thanks in advance.
Nith