Deletes all cached regions for an application.
Syntax
APEX_UTIL.PURGE_REGIONS_BY_APP ( p_application IN NUMBER);
Parameters
Table 35-77 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_UTIL.PURGE_REGIONS_BY_APP(p_application=>123); END;
Parent topic: APEX_UTIL