Previous
Previous
 
Next
Next


REMOVE_DEBUG_BY_APP Procedure

This procedure is used to delete from the debug message log all data belonging to a specified application.

Syntax

APEX_DEBUG_MESSAGE.REMOVE_DEBUG_BY_APP (
    p_application_id    IN NUMBER);

Parameters

Table: REMOVE_DEBUG_BY_AGE Parameters describes the parameters available in the REMOVE_DEBUG_BY_APP procedure.

REMOVE_DEBUG_BY_APP Parameters

Parameter Description

p_application_id

The application ID of the application.


Example

This example demonstrates removing all debug messages logged for the current application.

BEGIN
    APEX_DEBUG_MESSAGE.REMOVE_DEBUG_BY_APP(
        p_application_id => TO_NUMBER(:APP_ID) );
END;