8i | 9i | 10g | 11g | 12c | 13c | 18c | 19c | 21c | 23c | Misc | PL/SQL | SQL | RAC | WebLogic | Linux

Home » Articles » Misc » Here

APEX Tips : Basic APEX Management

Some quick tips about basic APEX management.

Related articles.

Create a New Instance Administrator

Create a New User

You can create a new user from the INTERNAL workspace, or from a specific workspace. The user creation is similar, but the entry into it is a little different.

For a new workspace administrator or developer user enter mandatory items and the following, then click the "Create User" button.

Create a New Workspace

Manage Schema Assignments

Export a Workspace

Import a Workspace

Export an Application

Import an Application

If you are transferring a new version of an application to an environment, you will need to delete the old version of the application first.

You can now continue with the import.

Upgrade an Application

Post Upgrade Checks

Compatibility Mode:

Javascript:

Components:

Theme:

Refresh Application Theme

Amend Navigation Menu Template Options

Validate APEX Installation

Some database operations, such as database upgrades, can leave APEX in an invalid state. Running the following command will validate the APEX installation and redo any missing grants. If you've installed APEX in a PDB, remember to switch to the relevant PDB before running the command.

CONN / AS SYSDBA
--ALTER SESSION SET CONTAINER=pdb1;

SET SERVEROUTPUT ON
EXEC SYS.validate_apex;

Validate ORDS Installation

Check out the note here.

For more information see:

Hope this helps. Regards Tim...

Back to the Top.