Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

AWR Report

Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
stm_lms_placeholder
  • User AvatarKiran Dalvi
  • 12 Dec, 2021
  • 0 Comments
  • 2 Mins Read

AWR Report

How to generate AWR report from Oracle Database?


AWR (Automatic Workload repository) Report:

Automatic Workload Repository gathers, processes and maintains performance stats used for problem detection and self-tuning the databases. This collective information can be displayed as views and reports (HTML/text) to better show the current database performance status for further analysis.



AWR gathers the following data

  • Object Statistics (access / usage stats of DB segments)

  • Time Model Statistics (V$SYS_TIME_MODEL and V$SESS_TIME_MODEL views)

  • Some of the System and Session Statistics (V$SYSSTAT and V$SESSTAT views)

  • ASH (Active Session History) Statistics

  • High load generating SQL Statements

Different Components that uses AWR are:

  • Automatic Database Diagnostic Monitor

  • Undo Advisor

  • SQL Tuning Advisor

  • Segment Advisor

By default, Snapshots are generated every hour and retains the statistics in the repository for 8 days. Please find below if you intend to change the default settings:


BEGIN

DBMS_WORKLOAD_REPOSITORY.MODIFY_SNAPSHOT_SETTINGS( retention => 14400,

interval => 30, topnsql => 100, dbid => 12345678);

END;

/


Here ,

Retention = 14400 minutes (10 days) Snapshot retention period

Interval = 30 minutes Snapshot interval period

topnsql = Number of Top SQL to flush

dbid = database identifier


Different types of AWR Reports for different purposes:


For Single Instance Environment:

@$ORACLE_HOME/rdbms/admin/awrrpt.sql


For Oracle RAC Environment :

@$ORACLE_HOME/rdbms/admin/awrgrpt.sql


For a particular SQL Statement :

@$ORACLE_HOME/rdbms/admin/awrsqrpt.sql


For Comparing the reports :

@$ORACLE_HOME/rdbms/admin/awrddrpt.sql



SAMPLE ACTIVITY:-


1) Login to DB Server as oracle 


2) export ORACLE_SID=PrimeDG


3) cd $ORACLE_HOME/rdbms/admin


4) sqlplus / as sysdba


5) @awrrpt.sql

(or)
@?/admin/awrrpt.sql



6) Enter value for report_type: html

Note: Since, we want to open the file in nicely formatted way, we pick html format.


7) Enter value for num_days: 7

Note: you can go back upto 7 days.


8) Enter value for begin_snap: 4697


9) Enter value for end_snap: 4704


10) Enter value for report_name: Test_AWR_Report.html


To pull the report, use WinSCP and pull the html file to you laptop. 


10) Start WinSCP and configure it connect to server with “oracle” username. 


11) Copy the file form UNIX (right side) to Windows (left side).


12) Double click the file to open the report in browser


Others:


Query to check the snapshot ID in last 24 hours. 

set linesize 200

set pagesize 200

col Begin_interval_time format a30

col end_interval_time format a30

select

snap_ID,

Begin_interval_time,

end_interval_time

from

dba_hist_snapshot

where 

begin_interval_time > sysdate-1

order by

Begin_interval_time;