| AWR Objects |
| Source |
{ORACLE_HOME}/rdbms/admin/dbmsawr.sql |
| First Availability |
10.1 |
| Background Process |
MMON - Automatic data purging every 7 days by default |
| Constants |
| Name |
Retention |
Data Type |
Value |
| MAX_INTERVAL |
100 years |
NUMBER |
52560000 |
| MIN_INTERVAL |
10 minutes |
NUMBER |
10 |
| MAX_RETENTION |
100 years |
NUMBER |
52560000 |
| MIN_RETENTION |
1 day |
NUMBER |
1440 | |
| Data Types |
AWRRPT_TEXT_TYPE AWRRPT_HTML_TYPE AWRRPT_TEXT_TYPE_TABLE AWRRPT_HTML_TYPE_TABLE SYS AWRRPT_ROW_TYPE |
| Dependencies |
| dba_hist_baseline |
dba_hist_snapshot |
| - |
- |
| awrrpt_html_type |
plitblm |
| awrrpt_html_type_table |
wrm$_baseline |
| awrrpt_text_type |
wrm$_snapshot |
| awrrpt_type_table |
wrm$_snap_error |
| dbms_swrf_lib |
wrm$_wr_control |
| dbms_swrf_report_internal |
| |
|
| AWR_REPORT_HTML |
| Display the AWR report in HTML |
dbms_workload_repository.awr_report_html( l_dbid IN NUMBER, l_inst_num IN NUMBER, l_bid IN NUMBER, l_eid IN NUMBER, l_options IN NUMBER DEFAULT 0) RETURN awrrpt_text_type_table PIPELINED;
awrrpt_text_type_table is VARCHAR2(150) |
| See AWR Report demo linked at the bottom of the page |
|
| AWR_REPORT_TEXT |
| Display the AWR report in ASCII text |
dbms_workload_repository.awr_report_text( l_dbid IN NUMBER, l_inst_num IN NUMBER, l_bid IN NUMBER, l_eid IN NUMBER, l_options IN NUMBER DEFAULT 0) RETURN awrrpt_text_type_table PIPELINED;
awrrpt_text_type_table is VARCHA |