Escape character while loading data using sqlloader
From: rita <rita.sinkar_at_gmail.com>
Date: Wed, 30 Sep 2009 05:43:28 -0700 (PDT)
Message-ID: <a167de68-ec82-4148-b8d6-460946b52153_at_f20g2000prn.googlegroups.com>
Hi all,
Date: Wed, 30 Sep 2009 05:43:28 -0700 (PDT)
Message-ID: <a167de68-ec82-4148-b8d6-460946b52153_at_f20g2000prn.googlegroups.com>
Hi all,
I am trying to load the data from a csv file to database.
my data is:
"aaaa","dd\"d"
"hhh","jbbb"
I want it in databse as
aaaa dd"d
hhh jbbb
My control file is:
LOAD DATA INFILE 'SHEET1.csv' TRUNCATE INTO TABLE temp
fields terminated by "," optionally enclosed by '"'
TRAILING NULLCOLS
(aa,bb)
I am using \ as escape character.
but if try to load the data, the data having \" does not get loaded
any pointers will be appreciated.
thanks. Received on Wed Sep 30 2009 - 07:43:28 CDT