Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> sqlldr doesn't convert unicode to WE8ISO8859P1

sqlldr doesn't convert unicode to WE8ISO8859P1

From: Owain Cole <owain.cole_at_xenicom.com>
Date: 16 Apr 2002 05:46:37 -0700
Message-ID: <7a3109e1.0204160446.6f834cf5@posting.google.com>


Hi,

My database is defined to use characterset WE8ISO8859P1 and I need to load some data which has come from an Excel spreadsheet, converted to unicode tab delimited format.

The below sqlldr control file loads the unicode into the required table, however it doesn't appear to have been converted to WE8ISO8859P1 as the data looks a little like this ' h e l l o w o r l d'.

here's the script (I'm a newbie to sqlldr so bare with me ;)

LOAD DATA
 CHARACTERSET UTF8
INFILE unicode.txt

BADFILE unicodebad.txt

REPLACE          INTO TABLE PERMITS
 FIELDS TERMINATED BY X'09' OPTIONALLY ENCLOSED BY '"'  TRAILING NULLCOLS
 (

Name	CHAR,
SITE_OPTION	CHAR

)

And the command line is:
D:>sqlldr user/pswd_at_schema unicode_loader.ctl -log log .txt

Please e-mail me any thoughts on this (our it policy is time restrictive wrt internet access)!

Thanks,
Owain Received on Tue Apr 16 2002 - 07:46:37 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US