Learn about troubleshooting after failed installation.
In a successful installation the following banner displays near the end of the installation:
Thank you for installing Oracle Application Express. Oracle Application Express is installed in the APEX_180200 schema.
To reinstall, you must either drop the Oracle Application Express database schemas, or run a script to completely remove Application Express from the database, depending upon the installation type.
SYS
specifying the SYSDBA
role and execute the SQL> @apxremov.sql
command.Parent topic: Oracle Application Express Installation Troubleshooting
Learn about reverting to Oracle Application Express to a previous release in the case of a failed upgrade installation.
In the case of a failed upgrade installation, you may want to revert Oracle Application Express to a previous release and then remove the schemas associated with the current release.
Parent topic: Cleaning Up After a Failed Installation
To verify whether you have a previous release of Application Express:
If you altered your images directory, revert it back to the release you want to revert to using the following methods:
For Oracle REST Data Services or mod_plsql :
If you altered your images directory, you must point the text alias /i/
back to images directory for the release you want to revert to.
For Embedded PL/SQL Gateway :
Run apex_epg_config.sql
from the release directory you want to revert to, to restore the images of that release. See the Oracle Application Installation Guide for the release you want to revert to and find the section "Updating the Images Directory When Upgrading from a Previous Release."
See Also:
This section describes how to revert to a Oracle Application Express previous release.
To revert to a previous Oracle Application Express release 1.5:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a Oracle Application Express release 1.6:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 2.0:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 2.2:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 3.0:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 3.1:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 3.2:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 4.0:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 4.1:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 4.2 in a non-CDB:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 4.2 in a CDB:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 5.0 in a non-CDB:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 5.0 in a CDB:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 5.1 in a non-CDB:
See Also:
Parent topic: Reverting to a Previous Release
To revert to a previous Oracle Application Express release 5.1 in a CDB:
See Also:
Parent topic: Reverting to a Previous Release
After you have reverted to the prior release you can remove the Oracle Application Express 18.2 schema.
DROP USER APEX_180200 CASCADE;
.@remove_apx182_usr.sql
.Start SQL*Plus and connect to the database and execute DROP USER APEX_180200 CASCADE;
.
To remove the release 18.2 schema from a non-CDB:
Start SQL*Plus and connect to the database where Oracle Application Express is installed as SYS
specifying the SYSDBA
role and execute the SQL> @apxremov.sql
command.
This section describes how to remove the Oracle Application Express schema, synonyms, and users from the database without deleting the database.
Note:
Do not follow these steps if you have upgraded your database from a prior release, and still want to use the prior release of Oracle Application Express. For information about reverting to a prior release, see Reverting to a Previous Release. If you are not sure whether you have completed a new installation or an upgrade installation, follow the steps in Cleaning Up After a Failed Installation to verify if a previous release of Application Express exists in the database.
To remove Oracle Application Express from the database:
Parent topic: Cleaning Up After a Failed Installation