Oracle Express correct character set modification tips"

Source: Internet
Author: User

The following article describes how to correctly modify the character set of Oracle Express and how to upgrade APEX. I installed windows in the European language two days ago, the international language version is no longer 60 M. The default Character Set of the database is AL32UTF8.

The company uses the ZHS16GBK character set, so the character set is changed using the following method:

SQL code

 
 
  1. sqlplus sys_name/sys_password as sysdba  
  2. shutdown immediate;  
  3. startup mount  
  4. alter system enable restricted session;  
  5. alter system set JOB_QUEUE_PROCESSES=0;  
  6. alter system set AQ_TM_PROCESSES=0;  
  7. alter database open;  
  8. alter database character set internal_use ZHS16GBK;  
  9. shutdown immediate  
  10. startup  
  11. sqlplus sys_name/sys_password as sysdba  
  12. shutdown immediate;  
  13. startup mount  
  14. alter system enable restricted session;  
  15. alter system set JOB_QUEUE_PROCESSES=0;  
  16. alter system set AQ_TM_PROCESSES=0;  
  17. alter database open;  
  18. alter database character set internal_use ZHS16GBK;  
  19. shutdown immediate  
  20. startup  

The character set is changed, and the attached APEX cannot be run.

Oracle Express modifies the character set and upgrades APEX to solve this problem.

APEX Download Page

Find a node on the internet, write a script based on apex_3.2.1.zip), just put it in the directory of your unzipped APEX, and run as prompted

Check whether the installation is successful:

SQL code

 
 
  1. select status from dba_registry where comp_id='APEX';  
  2. select status from dba_registry where comp_id='APEX';  

The installation is successful only when the result is "VALID ".

View APEX Port

SQL code

 
 
  1. select DBMS_XDB.GETHTTPPORT() from dual;  
  2. select DBMS_XDB.GETHTTPPORT() from dual;  

APEX administrator page

Http: // [IP]: [port]/apex/apex_admin

APEX normal page

Http: // [IP]: [port]/apex

The above content describes how to modify the character set of Oracle Express and upgrade APEX. I hope it will help you in this aspect.

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.