码迷,mamicode.com
首页 > 数据库 > 详细

数据库基本设置

时间:2014-11-21 16:45:43      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:commit   数据库   update   where   

查看字符集

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‘;


数据库基本设置

标签:commit   数据库   update   where   

原文地址:http://zhengjun1.blog.51cto.com/2885555/1580613

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!