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
Utilities
AUTHID
DEFINER
Dependencies
DBA_USERS
MGMT_HISTORY
MGMT_SNAPSHOT
DBMS_OUTPUT
MGMT_HISTORY_SQL
MGMT_SNAPSHOT_SQL
DUAL
MGMT_LATEST
MGMT_TEMPT_SQL
MGMT_BASELINE
MGMT_LATEST_SQL
V$INSTANCE
MGMT_BASELINE_SQL
MGMT_RESPONSE_CAPTURE_ID
V$SQLAREA
MGMT_CAPTURE
MGMT_RESPONSE_CONFIG
V$SYSSTAT
MGMT_CAPTURE_SQL
MGMT_RESPONSE_SNAPSHOT_ID
Documented
Yes: See the Oracle Database Plug-in Metric Reference Manual
First Available
Not known
Security Model
Owned by DBSNMP with EXECUTE granted to the OEM_MONITOR role.
mgmt_response.create_baseline(
snap_id_1 IN NUMBER,
n_stmts IN NUMBER);
SELECT COUNT(*) FROM dba_sql_plan_baselines;
COUNT(*)
---------
0
SELECT MAX(snap_id)
FROM dba_hist_snapshot;
MAX(SNAP_ID)
------------
3509
exec dbsnmp.mgmt_response.create_baseline(3509, 2);
BEGIN dbsnmp.mgmt_response.create_baseline(3509, 2); END;
*
ERROR at line 1:
ORA-01403: no data found
ORA-06512: at "DBSNMP.MGMT_RESPONSE", line 199
ORA-06512: at line 1
mgmt_response.get_time_stats(
db_time OUT NUMBER,
cpu_time OUT NUMBER,
application_wait_time OUT NUMBER,
cluster_wait_time OUT NUMBER,
user_io_wait_time OUT NUMBER,
concurrency_wait_time OUT NUMBER);
exec dbsnmp.mgmt_response.save_to_history; in save_to_history
BEGIN dbsnmp.mgmt_response.save_to_history; END;
*
ERROR at line 1:
ORA-01403: no data found
ORA-06512: at "DBSNMP.MGMT_RESPONSE", line 767
ORA-06512: at line 1