Home > APEX_UTIL > PURGE_REGIONS_
Previous |
Next |
Deletes all cached regions for an application.
Syntax
APEX_UTIL.PURGE_REGIONS_BY_APP ( p_application IN NUMBER);
Parameters
Table: PURGE_REGIONS_BY_APP Parameters describes the parameters available in PURGE_REGIONS_BY_APP
.
PURGE_REGIONS_BY_APP Parameters
Parameter | Description |
---|---|
|
The identification number (ID) of the application. |
Example
The following example show how to use APEX_UTIL.PURGE_REGIONS_BY_APP
to delete all cached regions for application #123.
BEGIN APEX_UTILITIES.PURGE_REGIONS_BY_APP(p_application=>123); END;