SQLLDR - Multibyte character error
SQhellDec 11 2008 — edited Dec 11 2008Hi,
I am loading a file which have unusual characters e.g.KAROSSERIE-CENTER-OBERROá,
My sqllder control file needs to be position based e.g as per below, but the character is at the end of the field. looks like the character is taking up two spaces and the position cannot handle it, i need to keep is as postional, anyway around this.
thanks
Record 2: Rejected - Error on table XXXX, column OWNER_NAME.
Multibyte character error.
LOAD DATA
CHARACTERSET UTF8
INFILE 'C:\XXXXX.txt'
BADFILE 'BUSINESSLOGSDATAEXEC.BAD'
DISCARDFILE 'BUSINESSLOGSDATAEXEC.DSC'
APPEND INTO TABLE XXXXXX
(
OWNER_NAME POSITION (98:107),
)