58.98 PURGE_REGIONS_BY_APP Procedure

Deletes all cached regions for an application.

Syntax

APEX_UTIL.PURGE_REGIONS_BY_APP (
    p_application IN NUMBER );

Parameters

Parameter Description
p_application The identification number (ID) of the application.

Example

The following example shows 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;