Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> sqlloader - load records with quotes " "
hi,
Is there a way to load the following records using
sqlldr?
"jack "King",","LEE"
The record should be loaded in the table as :
field1 - jack "King",
field2 - LEE
Control file:
LOAD DATA
APPEND INTO TABLE testing
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
TRAILING NULLCOLS
(a,b)
Data file format:
<field1>,<field2>
thanks.
susan
-- http://www.freelists.org/webpage/oracle-lReceived on Wed Feb 09 2005 - 14:04:13 CST