I have a table in which our service provider inserts UNICODE data, but my oracle character set is WE8ISO8859P1.
Now, to get this data, I used the following oracle function, but it displays ???????
select CONVERT (message, 'AL32UTF8', 'WE8ISO8859P1') from client_campaigns
another coulmn message is of type CLOB.
I cannot change the character set of my database due to dataloss and its second in production, and changes in the character set can lead to errors.
Now please tell me how can I get this data as UNICODE?
Regards, imran
source share