Hi helpers,
i have this raw data and want to convert to right form.
select dump(utl_i18n.raw_to_char( '262077C3', null )), utl_i18n.raw_to_char( '262077C3', null ) from dual
Actual values are:
Typ=1 Len=4: 38,32,119,195 & w
select dump(utl_i18n.raw_to_char( '262077C3', 'AL32UTF8')), utl_i18n.raw_to_char( '262077C3', 'AL32UTF8' ) from dual
ORA-01890: NLS-Fehler entdeckt
ORA-06512: in "SYS.UTL_I18N", Zeile 72
ORA-06512: in "SYS.UTL_I18N", Zeile 353
ORA-06512: in Zeile 1
01890. 00000 - "NLS error detected"
*Cause: An NLS error was detected.
*Action: Look for additional error messages and take appropriate action.
If there are no additional errors, call Oracle Worldwide Support.
Correct output should be:
& wä
The data is getting with an api request which should send utf-8 !
any hints ?