• oracle数据库的字符集更改


    A、oracle server 端 字符集查询 

    select userenv('language') from dual

    其中NLS_CHARACTERSET 为server端字符集 

    NLS_LANGUAGE 为 server端字符显示形式 

    B、查询oracle client端的字符集 

     $echo $NLS_LANG 

    如果发现你select 出来的数据是乱码,请把client端的字符集配置成与linux操作系统相同的字符集。如果还是有乱码,则有可能是数据库中的数据存在问题,或者是oracle服务端的配置存在问题。 

    C、server端字符集修改 

     ***************************************************************** 

    *  更改字符集步骤方法(WE8ISO8859P1 --> ZHS16GBK)            * 

    ***************************************************************** 

    SQL> 

    将数据库启动到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; 

    略 

    19 rows selected. 

  • 相关阅读:
    Selenium webdriver+Java-------如何等待页面元素加载完成
    Jmeter入门实战(二)如何使用Jmeter的BeanShell断言,把响应数据中的JSON跟数据库中的记录对比
    Selenium2+Python--下拉选择用select
    Pycharm连接github
    Selenium2+Python--常用方法分类
    setUp和tearDown及setUpClass和tearDownClass的用法及区别
    Selenium2+Python--常用方法
    Selenium2+Python--操作Excel读写(使用xlrd模块实现)
    HashMap 重新认知
    想测试工具类执行main方法却被告知application没有加载怎么办
  • 原文地址:https://www.cnblogs.com/baoposhou/p/5669778.html
Copyright © 2020-2023  润新知