24.12 REMOVE_APPLICATION Procedure

The REMOVE_APPLICATION procedure removes the application specified from the Oracle APEX instance.

Syntax

APEX_INSTANCE_ADMIN.REMOVE_APPLICATION (
    p_application_id IN NUMBER);

Parameters

Table 24-9 REMOVE_APPLICATION 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;