1. 程式人生 > >ORACLE XE 11G 字符集更改為zhs16gbk

ORACLE XE 11G 字符集更改為zhs16gbk

oracle xe安裝完成後修改字符集為zhs16gbk,執行sqlplus,依次執行加粗行。 SQL*Plus: Release 11.2.0.2.0 Production on 星期四 5月 11 22:08:25 2017 Copyright (c) 1982, 2014, Oracle.  All rights reserved. SQL> conn / as sysdba
已連線。
SQL> shutdown immediate;
資料庫已經關閉。
已經解除安裝資料庫。
ORACLE 例程已經關閉。
SQL> startup restrict
ORACLE 例程已經啟動。 Total System Global Area 1068937216 bytes
Fixed Size                  2260048 bytes
Variable Size             629146544 bytes
Database Buffers          432013312 bytes
Redo Buffers                5517312 bytes
資料庫裝載完畢。
資料庫已經開啟。
SQL> select name from v$database;
NAME
------------------
XE SQL> alter database character set internal_use ZHS16GBK; 資料庫已更改。 SQL> select value from nls_database_parameters  where parameter='NLS_CHARACTERSET'; VALUE
--------------------------------------------------------------------------------
ZHS16GBK SQL> shutdown immediate;

資料庫已經關閉。
已經解除安裝資料庫。
ORACLE 例程已經關閉。
SQL>startup
ORACLE 例程已經啟動。 Total System Global Area 1068937216 bytes
Fixed Size                  2260048 bytes
Variable Size             629146544 bytes
Database Buffers          432013312 bytes
Redo Buffers                5517312 bytes
資料庫裝載完畢。
資料庫已經開啟。
SQL>