32.35 TRUNCATE_LOG Procedure
Truncates the log entries specified by the input parameter.
Syntax
APEX_INSTANCE_ADMIN.TRUNCATE_LOG (
p_log IN VARCHAR2 )
Parameters
Parameter | Description |
---|---|
p_log |
This parameter can have one of the following values:
|
Example
The following example demonstrates how to use the TRUNCATE_LOG
procedure to remove all log entries that record access to APEX application pages.
BEGIN
APEX_INSTANCE_ADMIN.TRUNCATE_LOG('ACTIVITY');
END;
Parent topic: APEX_INSTANCE_ADMIN