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 |
---|---|
|
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;
Parent topic: APEX_PKG_APP_INSTALL