Home / Installation/Configurations12c / Oracle Apex Upgrade to 22.2
OracleDBconfig

Oracle Apex Upgrade to 22.2

Oracle Apex Upgrade to 22.2

 

ORACLE APEX

Oracle APEX (also known as APEX or Oracle Application Express) is an enterprise low-code development platform from Oracle Corporation that is used to develop and deploy web applications on Oracle databases. APEX provides a web-based integrated development environment (IDE) that uses wizards, drag-and-drop layout, and property editors to build applications and pages.

APEX intends to simplify the process of creating web applications that serve as a front end to a database server, among other things.

APEX is a fully-supported no-cost feature of the Oracle Database and can be installed anywhere Oracle Database runs. APEX is also offered on Oracle’s Cloud across various services including Autonomous Database Cloud Services and the stand-alone APEX Application Development service.

Server Details:

Server OS Version DB / APP Version
(DB Server)
Operating System – RHEL 8.6
DB Version – 12.1.2.0

(APP Server)
Operating System – RHEL 8.6
WLS Version – 14
APEX Version – 22.2

Oracle APEX Upgrade

1. Check the version of APEX.

select comp_name,version from dba_registry where comp_name like '%APEX%';

COMP_NAME VERSION
Oracle Application Express 21.2.0

2. Create a new TS for the updated Version

SQL> create tablespace APEXTBS_22 datafile size 2000m;
Tablespace created.

3. Find out the current users for APEX application

select username,account_status from dba_users where username like '%APEX%'

USERNAME ACCOUNT_STATUS
APEX_210200 EXPIRED
APEX_REST_PUBLIC_USER OPEN
APEX_PUBLIC_USER OPEN
APEX_LISTENER OPEN

4. INSTALL APEX by running following command.

Download APEX Latest version 22.2 from the below link

Download Link for APEX

5. Unzip APEX in Database Server : unzip apex_22.2.zip

6. Run the command connecting to the Database as SYS user

@apexins.sql APEXTBS_22 APEXTBS_22 TEMP /i/

7. Check the Apex status and version

select comp_name,version from dba_registry where comp_name like '%APEX%'

COMP_NAME VERSION
----------------------------------- ------------------------------
Oracle APEX 22.2.0

8. If ORDS Is not installed and not running. Download the ORDS.

9. Set the configuration directory for ORDS and run the below command

java -jar ords.war configdir /u01/source/ords

10. Run the installation using the below command

java -jar ords.war install advanced

11. Set the images path using below command

java -jar ords.war static --context-path /i /u01/sources/apex/images

APEX Credentials : WORKSPACE (INTERNAL) USERNAME (ADMIN) (<password>)

12. If ORDS Already installed, stop the MS from weblogic ORDS MS.

13. Copy the apex directory from DB Server to Weblogic Server using “scp”.

14. Use the same locations as current apex 21 configure. (Make copy of apex & ords).

15. Once done, Restart the Weblogic MS of ORDS.

Weblogic URL:

http://<IP>:7001/console

APEX ORDS URL:

http://<IP>:7003/ords
Workspace : INTERNAL
USERNAME : ADMIN

  • 5

About Abdul Khalique Siddique

In addition to my proficiency in Oracle Database, I have also specialized in Oracle E-Business Suite. I have hands-on experience in implementing, configuring, and maintaining EBS applications, enabling organizations to streamline their business processes and achieve operational efficiency. Also I have hands-on experience in Oracle Cloud Infrastructure (OCI). I have worked with OCI services such as compute, storage, networking, and database offerings, leveraging the power of the cloud to deliver scalable and cost-effective solutions. My knowledge of OCI architecture and deployment models allows me to design and implement robust and secure cloud environments for various business requirements. Furthermore, I have specialized in disaster recovery solutions for Oracle technologies. I have designed and implemented comprehensive disaster recovery strategies, including backup and recovery procedures, standby databases, and high availability configurations. My expertise in data replication, failover mechanisms, and business continuity planning ensures that organizations can quickly recover from disruptions and maintain uninterrupted operations.

Check Also

OracleDBconcept

Tablespace Level Fragmentation

Tablespace Level Fragmentation in Oracle Database Introduction In this article, I will discuss tablespace level …

Leave a Reply