I have a database with US7ASCII character set. It has some special characters like Ñ which appear as ? etc. Using this
utl_i18n.raw_to_nchar(utl_raw.cast_to_raw(COLUMN_NAME), 'WE8MSWIN1252')
I was able to convert them to accented form.
In another database with collation WE8MSWIN1252, the same scripts does not work. result set comes as ? or ¿ for special characters. And same is true for database which has collation as ALT32UTF8, it appears are ? or
Does any one has an idea how to resolve this?
Thanks!