I have a table in which our service provider insert UNICODE data but my oracle characterset is WE8ISO8859P1.
Now to get that data i used following function of oracle but it is displaying ???????
select CONVERT(message,'AL32UTF8','WE8ISO8859P1') from client_campaigns
one thing more message coulmn is of CLOB type.
I cant change characterset of my Database due to dataloss and second its in production and changes in characterset may lead to errors.
Now please guide how i can get this data as UNICODE?
Regards, imran