How to modify the Oracle Data Character Set

Source: Internet
Author: User

Select distinct (nls_charset_name (charsetid) characterset,
Decode (type #,
1,
Decode (charsetform,
1,
'Varchar2 ',
2,
'Varchar2 ',
'Unkown '),
9,
Decode (charsetform,
1,
'Varchar ',
2,
'Nchar vary ',
'Unkown '),
96,
Decode (charsetform, 1, 'Char ', 2, 'nchar', 'unkown '),
112,
Decode (charsetform, 1, 'clob', 2, 'clob', 'unkown ') types_used_in
From SYS. Col $
Where charsetform in (1, 2)
And type # In (1, 9, 96,112 );

Modify the value of nls_characterset and nls_nchar_characterset in the SYS. Props $ table to utf8.

Shutdown immediate;
Startup Mount;
Alter system enable restricted session;
Alter system set job_queue_processes = 0;
Alter system set aq_tm_processes = 0;
Alter database open;

Col value new_value charset
Select value from nls_database_parameters where parameter = 'nls _ characterset ';
Col value new_value ncharset
Select value from nls_database_parameters where parameter = 'nls _ nchar_characterset ';

Alter database character set internal_use & charset;
Alter database National Character Set internal_use & ncharset;

Shutdown immediate;
Startup;

Shutdown immediate;
Startup;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.