22.12 REMOVE_APPLICATION Procedure
The REMOVE_APPLICATION procedure removes the application specified from the Application Express instance.
Syntax
APEX_INSTANCE_ADMIN.REMOVE_APPLICATION (
    p_application_id IN NUMBER);Parameters
Table 22-9 REMOVE_APPLICATION Parameters
| Parameter | Description | 
|---|---|
| 
                                  
  | 
                              
                                  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 Application Express instance.
                  
BEGIN
    APEX_INSTANCE_ADMIN.REMOVE_APPLICATION(100);
END;Parent topic: APEX_INSTANCE_ADMIN