Oracle DBMS_AUTOIM
Version 23c

General Information
Library Note Morgan's Library Page Header
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
Pragmas PRAGMA SUPPLEMENTAL_LOG_DATA(default, UNSUPPORTED);
Security Model Owned by SYS with EXECUTE granted to the DBA role.
Source {ORACLE_HOME}/rdbms/admin/dbmsaim.sql
{ORACLE_HOME}/rdbms/admin/prvtaim.plb
Subprograms
 
ACTIVITY_REPORT (new 23c)
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);
SELECT dbms_autoim.activity_report(type => 'HTML', level => 'DETAILED');
 
SET_PARAMETER (new 23c)
Sets configuration parameter for AIM features dbms_autoim.set_parameter(
parameter_name  IN VARCHAR2,
parameter_value IN VARCHAR2);
exec dbms_autoim.set_parameter('ENABLE_AIM_TASK', 'TRUE');

Related Topics
Built-in Functions
Built-in Packages
Database Security
DBMS_AUTOIM_INTERNAL
What's New In 21c
What's New In 23c

Morgan's Library Page Footer
This site is maintained by Dan Morgan. Last Updated: This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2023 Daniel A. Morgan All Rights Reserved
  DBSecWorx