查看字符集
SQL> select value$ from props$ where name=‘NLS_LANGUAGE‘ or name=‘NLS_TERRITORY‘ or name=‘NLS_CHARACTERSET‘;
VALUE$
--------------------------------------------------------------------------------
SIMPLIFIED CHINESE
CHINA
WE8MSWIN1252
操作如下:
以sqlplus "/as sysdba"登录,执行如下更新:
update sys.props$ set VALUE$=‘ZHS16GBK‘ where name=‘NLS_CHARACTERSET‘;
之后要commit。
查看更新后的值:
select * from sys.props$ where NAME=‘NLS_CHARACTERSET‘;
原文地址:http://zhengjun1.blog.51cto.com/2885555/1580613