20.28 TRUNCATE_LOG Procedure
The TRUNCATE_LOG procedure truncates the log entries specified by the input parameter.
Syntax
APEX_INSTANCE_ADMIN.TRUNCATE_LOG(
    p_log     IN VARCHAR2);
Parameters
Table 20-24 TRUNCATE_LOG Parameters
| Parameter | Description | 
|---|---|
| 
 | 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 Application Express application pages.
                  
BEGIN
  APEX_INSTANCE_ADMIN.TRUNCATE_LOG('ACTIVITY');
END;Parent topic: APEX_INSTANCE_ADMIN