zoukankan      html  css  js  c++  java
  • 修改oracle字符集将字符编码WE8MSWIN1252修改为AL32UTF8

    本方法根据我目前掌握的知识只能应用于新库,有数据的库不建议使用

    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup mount;
    ORACLE instance started.
    
    Total System Global Area  918618112 bytes
    Fixed Size          2258640 bytes
    Variable Size         549456176 bytes
    Database Buffers      360710144 bytes
    Redo Buffers            6193152 bytes
    Database mounted.
    SQL> alter session set sql_trace=true;
    
    Session altered.
    
    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 INTERNAL_USE UTF8;
    
    Database altered.
    
    SQL> update props$ set VALUE$='UTF8' where NAME='NLS_NCHAR_CHARACTERSET';
    
    1 row updated.
    
    SQL> commit ;
    
    Commit complete.
    
    SQL> shutdown  immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    
    Total System Global Area  918618112 bytes
    Fixed Size          2258640 bytes
    Variable Size         549456176 bytes
    Database Buffers      360710144 bytes
    Redo Buffers            6193152 bytes
    Database mounted.
    Database opened.
    SQL> show parameter undo_undo_retention
    SQL> show parameter undo_retention

    数据库字符集验证:

  • 相关阅读:
    idea jvm 优化
    MYSQL
    mysql
    window.print() 去掉页眉页脚及打印链接【转载】
    eclipse maven插件问题:error occurred while automatically activating bundle org.eclipse.m2e.core.ui (525)
    数据挖掘的数据集资源 --转载
    Python分析《武林外传》 -----转载
    难题
    cookie格式化
    python 中变量的命名规范
  • 原文地址:https://www.cnblogs.com/zjpeng/p/11360762.html
Copyright © 2011-2022 走看看