Chinaunix首页 | 论坛 | 博客
  • 博客访问: 249448
  • 博文数量: 91
  • 博客积分: 2016
  • 博客等级: 大尉
  • 技术积分: 820
  • 用 户 组: 普通用户
  • 注册时间: 2008-07-08 23:25
文章分类

全部博文(91)

文章存档

2011年(6)

2010年(6)

2009年(34)

2008年(45)

我的朋友

分类:

2008-07-26 11:16:02

在linux下装了一个oracle 10g,登录sqlplus 后,显示
SQL> startup
ORACLE ???????

Total System Global Area  167772160 bytes
Fixed Size                  1218316 bytes
Variable Size              67111156 bytes
Database Buffers           96468992 bytes
Redo Buffers                2973696 bytes
????????
????????

然后赶快查看一下NLS
SQL> show parameter nls_la

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
nls_language                         string      SIMPLIFIED CHINESE

解决方法:
退出sqlplus
在oracle用户下执行
export NLS_LANG=american_america.zhs16gbk
可以编辑 bash_profile 文件进行永久设置
vi .bash_profile
NLS_LANG=american_america.zhs16gbk export NLS_LANG
再重新登录sqlplus

SQL> startup
ORACLE instance started.

Total System Global Area  167772160 bytes
Fixed Size                  1218316 bytes
Variable Size              67111156 bytes
Database Buffers           96468992 bytes
Redo Buffers                2973696 bytes
Database mounted.
Database opened.
SQL>

Ok,搞定

虽然解决了问题了,但是还是赶快补充了一下字符集的知识
下面几个链接说的很不错
http://www.itpub.net/276524.html
http://space.itpub.net/10159839/viewspace-159269


阅读(1365) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~