Solution to ORA-01460 errors in Oracle databases

Source: Internet
Author: User

Today we mainly introduce you to Oracle Database ORA-01460 errors in actual operations, we all know that using PL/SQL DEVELOPER 7 to connect to a newly installed Oracle Server sometimes has a ORA-01460 error, for example, type conversion error.

Only PL/SQL DEVELOPER has this problem.

The suspect is a character set problem. I checked a lot of information and found the cause of the problem:

Query

 
 
  1. select * from nls_database_parameters 

Check the NLS_CHARACTERSET item and find that the character set on the normal Oracle database server is ZHS16CGB231280, and the character set on the problematic server is ZHS32GB18030.

An error occurred while trying to use the following command to modify the character set:

 
 
  1. shutdown immedaite;Startup nomount;
    Alter database mount exclusive;
    Alter system enable restricted session;
    Alter system set job_queue_process=0; 

An error occurred while executing this statement.

 
 
  1. Alter database open;Alter database character set ZHS16CGB231280;  

This statement can only be modified to a superset.


The above content is an introduction to Oracle Database ORA-01460 errors, hope you have some gains.

 

Related Article

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.