Reports auto zone map activity for a given time window
Returns report for all the execution history of the last execution in TEXT format and all sections are displayed with typical level
dbms_auto_zonemap.activity_report(
start_time IN TIMESTAMP WITH TIME ZONE DEFAULT NULL,
end_time IN TIMESTAMP WITH TIME ZONE DEFAULT NULL,
type IN VARCHAR2 DEFAULT 'TEXT', -- values HTML, TEXT, XML
section IN VARCHAR2 DEFAULT 'DETAILS', -- values ALL, DETAIL, SUMMARY
level IN VARCHAR2 DEFAULT 'TYPICAL') -- values ALL, BASIC, TYPICAL
RETURNS CLOB;
SELECT dbms_auto_zonemap.activity_report;
*
ORA-40216: feature not supported
Returns execution history for the last two days in TEXT format at typical level
SELECT dbms_auto_zonemap.activity_report(SYSTIMESTAMP-2, NULL);
*
ORA-40216: feature not supported
Returns a typical level execution history from beginning to end_time
SELECT dbms_auto_zonemap.activity_report(NULL, SYSTIMESTAMP-1);
*
ORA-40216: feature not supported
Returns the last execution's report detail section with only basic details