Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: SQLLDR question
Terry,
I tried the following in 817 and it worked fine:
LOAD DATA
INFILE *
INTO TABLE test
REPLACE
FIELDS TERMINATED BY ',' TRAILING NULLCOLS
( col1 char ,
col_seq "test_seq.nextval"
)
BEGINDATA
'o&ne',
'two',
(sorry about the first email - fingers slipped!)
Do you get an error in the sqlldr log? - what does it say?
Tom Mercadante
Oracle Certified Professional
-----Original Message-----
Sent: Friday, July 26, 2002 11:33 AM
To: Multiple recipients of list ORACLE-L
I am trying to load data via sqlldr (8.1.6.3 on Solaris 8). A couple of records keep kicking out. Because on the commonality between the records that are kicked out, I have a question.
Does sqlldr treat an & the same way that sqlplus does. In other words, if one of the fields in a records has an & embedded in it, will sqlldr reject the record? If so, is there a way around this?
TIA
Terry Ball, DBA
Birch Telecom
Work: 816-300-1335
FAX: 816-300-1800
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Ball, Terry
INET: TBall_at_birch.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Jul 26 2002 - 11:19:27 CDT