Difference between awrrpt.sql and awrrpti.sql ?
Posted by FatDBA on June 28, 2012
Difference between awrrpt.sql and awrrpti.sql?
The output of these reports is essentially the same, except that awrrpti.sql script allows you to define a specific instance to report on.
AWR Report types (Most Commonly used Reports):
- The
awrrpt.sql
SQL script generates an HTML or text report that displays statistics for a range of snapshot Ids. - The
awrrpti.sql
SQL script generates an HTML or text report that displays statistics for a range of snapshot Ids on a specified database and instance. - The
awrsqrpt.sql
SQL script generates an HTML or text report that displays statistics of a particular SQL statement for a range of snapshot Ids. Run this report to inspect or debug the performance of a SQL statement. - The
awrsqrpi.sql
SQL script generates an HTML or text report that displays statistics of a particular SQL statement for a range of snapshot Ids on a specified database and instance. Run this report to inspect or debug the performance of a SQL statement on a specific database and instance. - The
awrddrpt.sql
SQL script generates an HTML or text report that compares detailed performance attributes and configuration settings between two selected time periods. - The
awrddrpi.sql
SQL script generates an HTML or text report that compares detailed performance attributes and configuration settings between two selected time periods on a specific database and instance. - The awrgrpt.sql Generate AWR Cluster aggregated statistics from all the instances.
- The awrgdrpt.sql report compares the statistic results of differences between two different snapshot intervals, for the whole cluster database.
SQL> @awrsqrpt.sql —- Generate AWR Report Single Select Statement:
Run the awrsqrpt.sql script from $ORACLE_HOME/rdbms/admin/ as a sys user. The script will ask you for the output format of the report (HTML or TEXT), the the number of days (n) will result in the most recent
(n) days of snapshots being listed (If you hit enter, you will get all the available snapshots listed), begin and end snapshot interval Ids intervals and the SQL_ID for the specific SELECT statement …
To check SQL ID —
SQL> select SQL_ID from V$SQLAREA where rownum =1 ;
SQL_ID
————-
1fkh93md0802n
Leave a Reply