23.19 REMOVE_SESSION_MESSAGES Procedure
This procedure deletes from the debug message log all data for a given session in your workspace defaults to your current session.
Syntax
APEX_DEBUG.REMOVE_SESSION_MESSAGES (
p_session IN NUMBER DEFAULT NULL )
Parameters
Parameter | Description |
---|---|
p_session |
The session ID. Defaults to your current session. |
Example
This example removes all debug messages logged within the current session. Because no value is passed for the p_session
parameter, the procedure defaults to the current session.
BEGIN
APEX_DEBUG.REMOVE_SESSION_MESSAGES();
END;
Parent topic: APEX_DEBUG