ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling
complimentary technical Workshops on Database Security for the first 30
Oracle Database customers located anywhere in North America, EMEA, LATAM, or
APAC that send an email to
asra_us@oracle.com. Request a Workshop for
your organization today.
Purpose
Automatic In-Memory (AIM) and Automatic Data Optimization (ADO) utilities that allow a DBA to configure the AIM task and generate activity reports
AUTHID
CURRENT_USER
Dependencies
DBMS_AUTOIM_INTERNAL
DBMS_SYS_ERROR
PRVT_REPORT_TAGS
DBMS_REPORT
PRVT_ADVISOR
XMLTYPE
Documented
No
First Available
23.1
Initialization Parameters
INMEMORY_AUTOMATIC_LEVEL
OFF - the installation default value
LOW
MEDIUM
HIGH
ALTER SYSTEM SET inmemory_automatic_level='HIGH'
COMMENT='set 12/20/2022'
SID='*'
SCOPE=BOTH;
-- the container clause is not valid for this
parameter
Reports AIM task activity for given feature(s) within specified time interval
dbms_autoim.activity_report(
feature_id IN NUMBER := NULL,
start_time IN TIMESTAMP WITH TIME ZONE := NULL,
end_time IN TIMESTAMP WITH TIME ZONE := NULL,
type IN VARCHAR2 := 'TEXT', -- html, text, xml
level IN VARCHAR2 := 'BASIC') -- basic, detailed
RETURN CLOB;
PRAGMA SUPPLEMENTAL_LOG_DATA(activity_report, READ_ONLY);