首页 > 数据库技术 > 详细

修改oracle字符集将字符编码WE8MSWIN1252修改为AL32UTF8

时间:2019-08-15 21:57:08      阅读:83      评论:0      收藏:0      [点我收藏+]

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

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

数据库字符集验证:

技术分享图片

 

修改oracle字符集将字符编码WE8MSWIN1252修改为AL32UTF8

原文:https://www.cnblogs.com/zjpeng/p/11360762.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!