Home / Database / Oracle Application Express Documentation, Release 18.2
Application Express API Reference
Contents
Oracle Application Express Documentation, Release 18.2
Page 540 of 721

35.11 CLEAR_USER_CACHE Procedure

This procedure removes session state and application system preferences for the current user's session. Run this procedure if you reuse session IDs and want to run applications without the benefit of existing session state.

Syntax

APEX_UTIL.CLEAR_USER_CACHE;

Parameters

None.

Example

The following example demonstrates how to use the CLEAR_USER_CACHE procedure to clear all session state and application system preferences for the current user's session.

BEGIN
    APEX_UTIL.CLEAR_USER_CACHE;
END;
Previous Page
Page 540 of 721
Next Page