Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: SQL Loader:How to load data with carriage return embedded
Arul,
Interesting problem. We had a similar situation and used AWK instead after a
bit of head-scratching.
The following code worked for us
BEGIN{
FS="`"
first=0
}
{
if (substr($1,1,3)=="KB0"){ -- to identify each new record which starts with those letters
if (first==1) printf("\n") printf("%s", $0)
else
printf("<br>%s", $0)
if (first==0)
first=1
}
END{
printf("\n")
}
I am still interested in a sqlloader resolution to this problem if anyone else has one
John
-----Original Message-----
Sent: 23 February 2002 07:33
To: Multiple recipients of list ORACLE-L
Hi DBAs,
I have a flat file with Varchar2 data spread across lines with carriage return..
I have tried using the following but in vain.
where descr - Varchar2(4000) field..
There is no error message(!)??
Note - With the above spec. able to load only the first record with carriage returns embedded. Rest of the records are skipped as bad records(!) .
Can anyone suggest the ways of loading it thru SQL Loader?
Thank you.
regards,
Arul.
This message (including any attachments) contains confidential information intended for a specific individual and purpose, and is protected by law. If you are not the intended recipient, you should delete this message and are hereby notified that any disclosure, copying, or distribution of this message, or the taking of any action based on it, is strictly prohibited.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Hallas John INET: John.Hallas_at_btcellnet.net 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 Mon Feb 25 2002 - 03:03:19 CST
![]() |
![]() |