[EN]
Automatic Workload Repository is a set of internal tables of the Oracle database data dictionary and a special background process MMON, which appeared in Oracle10g.
Periodically, AWR creates a statistical copy (snapshot) and stores the information in tables located in the SYSAUX tablespace. By default, the regular collection period is set to 60 minutes. This value can be reduced to 10 minutes if desired.
Create a report
From the Start_id drop-down list, select the image ID starting from which to generate the report
From the End_id drop-down list, select the image ID ending with which to generate a report
Click the Show AWR report button
select *
from table(DBMS_WORKLOAD_REPOSITORY.AWR_REPORT_HTML(
(select dbid from v$database),
1,
<Start_id>,
<End_id>)
)
The generated report will be placed in the tmp folder with the name awrtmp.html, and also saved in the local database in the CND$AWR_REPORT table (CoreDB.db database)
Viewing a previously saved report
In the List AWR list, select the report you are interested in (double click)
Comparison of reports
The program allows you to manually compare two previously generated reports.
Generate reports for arbitrary periods
In the "List AWR" list, set the radio buttons opposite the generated reports (select 2 reports)
Click the "Compare select" button
[RU]
Automatic Workload Repository представляет из себя набор внутренних таблиц словаря данных БД Oracle и специальный фоновый процесс MMON, который появился в Oracle10g.
Периодически AWR создает статистическую копию (снимок) и сохраняет информацию в таблицах расположенных в табличном пространстве SYSAUX. По умолчанию регулярный период сбора установлен на 60 минут. Это значение может быть уменьшено до 10 минут при желании.
Создание отчета
Из выпадающего списка Start_id выбрать ID снимка начиная с которого формировать отчет
Из выпадающего списка End_id выбрать ID снимка заканчивая которым формировать отчет
Нажать кнопку Show AWR report
select *
from table(DBMS_WORKLOAD_REPOSITORY.AWR_REPORT_HTML(
(select dbid from v$database),
1,
<Start_id>,
<End_id>)
)
Сформированный отчет будет помещен в папку tmp с именем awrtmp.html, а так же сохранен в локальной базе данных в таблице CND$AWR_REPORT (база CoreDB.db)
Просмотр ранее сохраненного отчета
В списке List AWR выбрать интересующий отчет (двойно клик)
Сравнение отчетов
Программа позволяет в ручную сравнивать два ранее сформированных отчета.
Сформировать отчеты за произвольные периоды
В списке "List AWR" установить переключатели напротив сформированных отчетов (выбрать 2 отчета)
Нажать кнопку "Compare select"