I have a CSV file encoded in uft8. There is text in a field of the record
In the text are characters that are coded with two characters.
e.g. in the word Österreich
Character Ö
is encoded as O
and ¨
and not as Ö
If I open the file in the editor, then I see the correct word Österreich
,
if I look at the file by selecting the external table, then I see O¨sterreich
.
When creating the external table I already added the ACCESS Parameter CHARACTERSET AL32UTF8
ACCESS PARAMETERS (
RECORDS DELIMITED BY NEWLINE
CHARACTERSET AL32UTF8
STRING SIZES ARE IN BYTES
skip 1
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LDRTRIM
MISSING FIELD VALUES ARE NULL
)
Is there a possibility or a parameter tell oracle to merge the two characters in the output to one?