umlaut when converting blob to varchar [message #293737] |
Mon, 14 January 2008 16:38  |
navkrish
Messages: 189 Registered: May 2006 Location: NJ,USA
|
Senior Member |

|
|
Hi,
I have a blob column with content
"Renamed to Münchener Lebensversicherung AG"
I want to store this information into varchar column.
So i did UTL_RAW.CAST_TO_VARCHAR2() and stored the converted value into varchar column.
Problem i am facing is with umlaut. When I convert to varchar using UTL_RAW.CAST_TO_VARCHAR2 the converted data appears as below
"Renamed to M¿nchener Lebensversicherung AG"
How to keep the the same umlaut.
Regards,
Naveen
|
|
|
|
|
|
|
|
|
|
|
Re: umlaut when converting blob to varchar [message #293959 is a reply to message #293737] |
Tue, 15 January 2008 14:34  |
navkrish
Messages: 189 Registered: May 2006 Location: NJ,USA
|
Senior Member |

|
|
Barbara, you are correct.
Data is transformed from one database (DB1) to another database (DB2).
I checked the NLS_PARAMETERS. It is different between the databases.
One has value UTF8 (source) and target database has value AL32UTF8.
I think problem should be because of this. Let me change the parameter and test it again.
Naveen
[Updated on: Tue, 15 January 2008 14:37] Report message to a moderator
|
|
|