DEINSTALL Procedure Signature 2

This procedure deinstalls specified packaged application. If invalid packaged application ID passed, the procedure raises an error.

Syntax

APEX_PKG_APP_INSTALL.DEINSTALL(
    p_app_name in varchar2 );

Parameters

Table 25-2 DEINSTALL Procedure Signature 2 Parameters

Parameter Description

p_app_name

The case insensitive packaged application name.

Example

The following example shows how to use DEINSTALL procedure to deinstall packaged application 'Bug Tracking' from DEMO workspace.

begin
    APEX_UTIL.SET_WORKSPACE( 'DEMO' );
    APEX_PKG_APP_INSTALL.DEINSTALL( 
        p_app_name => 'Bug Tracking' );
end;