32.17 REMOVE_APPLICATION Procedure
Removes the application specified from the Oracle APEX instance.
Syntax
APEX_INSTANCE_ADMIN.REMOVE_APPLICATION (
p_application_id IN NUMBER );Parameters
| Parameter | Description |
|---|---|
p_application_id |
The ID of the application. |
Example
The following example demonstrates how to use the REMOVE_APPLICATION procedure to remove an application with an ID of 100 from an APEX instance.
BEGIN
APEX_INSTANCE_ADMIN.REMOVE_APPLICATION(100);
END;Parent topic: APEX_INSTANCE_ADMIN