I want to change character set of oracle database from \'WE8MSWIN1252\' to \'AL32UTF8\'
I tried to execute following steps from the link (http://download.oracle.com/
For an ALTER DATABASE CHARACTER SET
statement to execute successfully, two conditions must be fulfilled:
Because WE8MSWIN1252
is not a strict subset of AL32UTF8
this statement will fail (example: the pound sign is A3
in hex in WE8MSWIN1252
, but in AL32UTF8
it is C2 A3
).
You'll need to use CSALTER
to do this migration.
Refer to: Character Set Migration.