zoukankan      html  css  js  c++  java
  • oracle11g 修改字符集 修改为ZHS16GBK

    转:http://www.cnblogs.com/jay-xu33/p/5210098.html

    oracle11g 修改字符集 修改为ZHS16GBK
    1.cmd下,cd到oracle数据库软件的服务器端 如:D:appAdministratorproduct11.2.0dbhome_1BIN

    2.输入set ORACLE_SID=你想进入的数据库的那个sid

    3.输入 sqlplus /nolog

    4.将数据库启动到RESTRICTED模式下做字符集更改:

    SQL> conn /as sysdba

    Connected.


    SQL> shutdown immediate;

    Database closed.

    Database dismounted.

    ORACLE instance shut down.

    SQL> startup mount

    ORACLE instance started.

    Total System Global Area 236000356 bytes

    Fixed Size 451684 bytes

    Variable Size 201326592 bytes

    Database Buffers 33554432 bytes

    Redo Buffers 667648 bytes

    Database mounted.

    SQL> ALTER SYSTEM ENABLE RESTRICTED SESSION;

    System altered.

    SQL> ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0;

    System altered.

    SQL> ALTER SYSTEM SET AQ_TM_PROCESSES=0;

    System altered.

    SQL> alter database open;

    Database altered.

    SQL> ALTER DATABASE CHARACTER SET ZHS16GBK;

    ALTER DATABASE CHARACTER SET ZHS16GBK

    *

    ERROR at line 1:

    ORA-12712: new character set must be a superset of old character set

    提示我们的字符集:新字符集必须为旧字符集的超集,这时我们可以跳过超集的检查做更改:

    SQL> ALTER DATABASE character set INTERNAL_USE ZHS16GBK;

    Database altered.

    SQL> select * from v$nls_parameters;

    19 rows selected.

    重启检查是否更改完成:

    SQL> shutdown immediate;

    Database closed.

    Database dismounted.

    ORACLE instance shut down.

    SQL> startup

    ORACLE instance started.

    Total System Global Area 236000356 bytes

    Fixed Size 451684 bytes

    Variable Size 201326592 bytes

    Database Buffers 33554432 bytes

    Redo Buffers 667648 bytes

    Database mounted.

    Database opened.

    SQL> select * from v$nls_parameters;

  • 相关阅读:
    .NET 使用EF执行存储过程你知道几种?
    SQLserver 如何优雅的行转列
    SQLserver 如何获取近1月、近3个月、近6月数据
    三汇自动挂断问题:SIP兼容性,ACK检测,忽略ACK开启。
    几个flutter 开源项目测试
    Android versions for all users globally
    Using Flutter 2 on M1 MacOS Apple Silicon
    Educational Codeforces Round 111
    Wannafly挑战赛1
    摆烂记录
  • 原文地址:https://www.cnblogs.com/maweiwei/p/7612814.html
Copyright © 2011-2022 走看看