I need to load a date as a constant into a table.
I tried;
LOAD DATA
APPEND INTO TABLE "HLR_OWNER"."FOR"
FIELDS TERMINATED BY ','
(MS,
IM,
Filedate "to_date('20090309','YYYYMMDD')"
)
but I get;
Record 1: Rejected - Error on table "FOR", column FILEDATE.
Column not found before end of logical record (use TRAILING NULLCOLS)
Any clues ?
thx
I tried;
LOAD DATA
APPEND INTO TABLE "HLR_OWNER"."FOR"
FIELDS TERMINATED BY ','
(MS,
IM,
Filedate "to_date('20090309','YYYYMMDD')"
)
but I get;
Record 1: Rejected - Error on table "FOR", column FILEDATE.
Column not found before end of logical record (use TRAILING NULLCOLS)
Any clues ?
thx