Skip to main content

Remove Oracle Application Express (APEX) from Oracle Database 12c

Remove Oracle Application Express (APEX) from Oracle Database 12c

1.1. Identify installed Apex

Connect to CDB$ROOT by sys user:

sqlplus / as sysdba
show con_name;
show user;

First of all check our currently installed APEX version with this query:

set lines 200
column CON_ID format 999999
column PDB format a12
column COMP_ID format a12
column SCHEMA format a12
column VERSION format 999999
column STATUS format a16
select m.CON_ID, (select i.name from v$pdbs i where i.con_id=m.con_id) PDB,m.COMP_ID, m.SCHEMA, m.VERSION, m.STATUS from CDB_REGISTRY m where m.COMP_ID='APEX' order by m.CON_ID;

 CON_ID PDB      COMP_ID   SCHEMA       VERSION       STATUS
------- ------------ ------------ ------------ ------------------------------ ----------------
      3 CMSDB      APEX   APEX_200100  20.1.0.00.13       VALID
      6 PSBDBHR      APEX   APEX_200100  20.1.0.00.13       VALID
      7 PSBDBFA      APEX   APEX_190200  19.2.0.00.18       VALID
     10 EBEK3RV      APEX   APEX_050000  5.0.4.00.12       VALID
     11 MISPDB      APEX   APEX_200200  20.2.0.00.20       VALID
     12 APEXREPORT   APEX   APEX_220200  22.2.0       VALID
     14 UCB3RVDB     APEX   APEX_050100  5.1.0.00.45       VALID
     15 EBEK2RVDB    APEX   APEX_050000  5.0.1.00.06       VALID
     16 PDBORCL     APEX   APEX_050100  5.1.0.00.45       VALID


1.2. Remove Apex

We download the laest Apex and unzip to '/oracle/apex/apex' directory of Databae server.
At First, remove APEX from all custom PDB then from PDB$SEED and lastly from CDB$ROOT.

Go to the Home Directory of Later release of APEX;
[oracle@Server ~]$ cd /oracle/apex/apex
Connect to the desire PDB with sys user;

[oracle@Server apex]$ sqlplus / as sysdba
SQL> ALTER SESSION SET CONTAINER=PDBORCL; -- PDB Name Like PDBORCL, PDB$SEED, CDB$ROOT etc.
SQL> SHOW CON_NAME; -- container=PDBORCL
SQL> SHOW USER; -- user=sys
SQL> select username from dba_users where upper(username) like '%APEX%'; -- Check the Apex User
SQL> !ls -lrth apxremov.sql
SQL> @apxremov.sql
SQL> select username from dba_users where upper(username) like '%APEX%'; -- You do not see any Apex User

.
.
.
.
PL/SQL procedure successfully completed.

...Application Express Removed
or
1.3. Drop Apex

If we unable to download too old apex from oracle then drop the  old installations (Non-CDB or PDB):



sqlplus / as sysdba
set lines 200
column CON_ID format 999999
column PDB format a12
column COMP_ID format a12
column SCHEMA format a12
column VERSION format 999999
column STATUS format a16
select m.CON_ID, (select i.name from v$pdbs i where i.con_id=m.con_id) PDB,m.COMP_ID, m.SCHEMA, m.VERSION, m.STATUS from CDB_REGISTRY m where m.COMP_ID='APEX' order by m.CON_ID;


 CON_ID PDB      COMP_ID        SCHEMA       VERSION                    STATUS
------- ------------ ------------ ------------ ------------------------------ ----------------
     16 PDBORCL     APEX       APEX_050100  5.1.0.00.45                VALID



ALTER SESSION SET CONTAINER=PDBORCL;

-- 12.2 onward.
ALTER SESSION SET "_oracle_script"=true;

drop user APEX_050100 cascade;
drop user APEX_PUBLIC_USER cascade;
DROP PACKAGE SYS.WWV_DBMS_SQL_APEX_050100;

Again check by the step -1 (1.1. Identify installed Apex) we do not find any installed apex.



In this way, we will remove Oracle Apex from any Pluggable Database.




Comments

Popular posts from this blog

Upgrading Issue for RHEL 7 to 8 With Leapp

Overview The Leapp utility is a framework for updating and upgrading operating systems as well as applications. The operations of this utility consist of two phases 1. the preupgrade Phase – that chack the upgrade possibilities and 2. the actual upgrade phase – that map packages between previous and current versions of the software packages. Issue – 01: After running ‘ sudo leapp preupgrade ‘ sometimes you find the below issue in ‘ /var/log/leapp/leapp-report.txt ‘. Detail: Risk Factor: high (inhibitor) Title: Leapp detected loaded kernel drivers which have been removed in RHEL 8. Upgrade cannot proceed. Summary: Support for the following RHEL 7 device drivers has been removed in RHEL 8: – pata_acpi Key: f08a07da902958defa4f5c2699fae9ec2eb67c5b Remediation: 1. Disable detected kernel drivers in order to proceed with the upgrade process using the rmmod or modprobe -r . rmmod – Simple program to remove a module from the Linux Kernel modprobe – Add and remove modules from the Linux Ke

Upgrading Oracle Linux 6 to 7

Overview It is possible to upgrade an Oracle Linux 6 system to Oracle Linux 7.6 under the following conditions: The system meets the minimum installation requirements for Oracle Linux 7 as described in Chapter 1, System Requirements and Limits. The Oracle Linux 6 system has been completely updated from the ol6_x86_64_latest channel or ol6_latest repository. UEK R3 or UEK R4 has been installed on the system to be upgraded and is the default boot kernel. Upgrading from UEK R2 is not supported. Note that the system is upgraded to use the UEK R5 release provided with Oracle Linux 7.6. Upgrading is supported only for systems that are installed with the Minimal Install base environment. If additional packages are installed from an alternative repository or channel, upgrade might fail or the resulting upgrade might not function as expected. reference: https://docs.oracle.com/en/operating-systems/oracle-linux/7/relnotes7.6/ol7-install.html#ol7-upgrade-ol6 Verifying the system before Upgrade: #

Software-only Installation of oracle Database 21c on RHEL 8

Overview Oracle Database 21c is a multi-model database that provides full support for relational and non-relational data, such as JSON, XML, text, spatial and graph data. There are lots of new features available in this new release like partitioned hybrid tables, encryption capabilities in the built-in data dictionary, statistics-only queries, and many more. It also enables Oracle's Autonomous Database Cloud Services. This article describes the installation of Oracle Database 21c 64-bit on Red Hat 8 64-bit. Lab Environment Particulars                                     Database Info --------------                                            ------------------------------------------------------- OS Release                                     Red Hat Enterprise Linux release 8.4 (Ootpa) Kernel                                              4.18.0-425.10.1.el8_7.x86_64 IP Address                                     1 92.168.0.10 Host Name                                  oemsrv User Na