I received the following error when using sqlldr80 to load a lobfile
SQL*Loader-350: Syntax error at line 9.
Expecting "," or "", found "FILLER".
RES_FILE FILLER CHAR,
Here is my control file
OPTIONS (ROWS=20000,DIRECT=FALSE)
LOAD DATA
INFILE 'MFnotes.TXT'
badfile 'MFNOTES.BAD'
discardfile 'MFNOTES.DSC'
append into table motfuel.mfnotes
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
(nebid CHAR,
RES_FILE FILLER CHAR,
NOTES LOBFILE(RES_FILE) RAW TERMINATED BY EOF
)
and here is my trial text file
000003204,R0003204.RTF
Any suggestions are appreciated
SQL*Loader-350: Syntax error at line 9.
Expecting "," or "", found "FILLER".
RES_FILE FILLER CHAR,
Here is my control file
OPTIONS (ROWS=20000,DIRECT=FALSE)
LOAD DATA
INFILE 'MFnotes.TXT'
badfile 'MFNOTES.BAD'
discardfile 'MFNOTES.DSC'
append into table motfuel.mfnotes
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
(nebid CHAR,
RES_FILE FILLER CHAR,
NOTES LOBFILE(RES_FILE) RAW TERMINATED BY EOF
)
and here is my trial text file
000003204,R0003204.RTF
Any suggestions are appreciated