ASH Report Evaluation

ASH Report Overview

An ASH report provides a granular view of session activity over a specified time period. It includes details about wait events, SQL executions, session IDs, blocking sessions, and more. Here's how to generate an ASH report:

Generating ASH Report

bash

Copy code

@$ORACLE_HOME/rdbms/admin/ashrpt.sql


2. Key Sections of an ASH Report


A. Load Profile

This section gives a summary of the workload, showing the average number of active sessions, wait events, and resource consumption.


B. Top Wait Events

This section lists the most significant wait events by time, along with the number of sessions affected.

Focus on events with high percentages or long wait times. For example:


C. Top SQL by DB Time

This section provides details about the SQL queries that consumed the most database time during the snapshot period.

Queries with high DB Time and high CPU Time or Wait Time are prime candidates for optimization. Check if you can tune SQL statements with high elapsed time or excessive resource consumption.


D. Top Sessions

This section identifies which sessions contributed the most to the database workload during the snapshot period.

This section helps identify problem sessions that may be consuming excessive resources. A session with high CPU Time and frequent waits could indicate a bottleneck or a poorly optimized query.


E. Top Blocking Sessions

This section identifies sessions that are causing lock contention by blocking other sessions.

Blocking sessions are often caused by poorly designed transactions or long-running queries. You may need to investigate and either tune the SQL or manage the locks better.


F. Top Objects

Shows the database objects (tables, indexes) that were involved in the most waits during the report period.

If an object appears frequently, it may indicate a hotspot in the database. Index tuning or partitioning strategies can sometimes help reduce contention.


3. Analysis Steps for ASH Report

Step 1: Review the Average Active Sessions

Start by checking the Average Active Sessions (AAS) in the load profile section to understand if the database is overloaded. AAS greater than the number of CPUs in your system could indicate CPU pressure or I/O bottlenecks.

Step 2: Identify High Wait Events

Next, check the Top Wait Events section to see where the database is spending the most time waiting. Focus on events with the highest wait times and drill down to the sessions and SQL statements causing these waits.

Step 3: Examine Top SQL Statements

Go through the Top SQL by DB Time section to identify poorly performing SQL. Look for queries with high execution times or high I/O costs. These SQL statements are potential targets for tuning (e.g., adding indexes, rewriting queries).

Step 4: Investigate Sessions Causing Resource Contention

Use the Top Sessions and Top Blocking Sessions sections to identify any sessions that are hogging CPU or causing contention. You may need to tune these sessions or adjust application behavior.

Step 5: Examine Hot Objects

Review the Top Objects section to find objects (tables or indexes) that are frequently accessed or causing contention. Consider database design improvements such as indexing, partitioning, or caching strategies.


4. Recommendations Based on ASH Report

After evaluating the ASH report, some possible recommendations might include:

Conclusion

ASH reports provide a detailed view of session activity and wait events, allowing DBAs to pinpoint performance issues. By focusing on key sections such as wait events, SQL statements, sessions, and objects, you can diagnose bottlenecks and implement targeted optimizations to improve Oracle database performance.

AWR vs ASH Report

ASH (Active Session History) and AWR (Automatic Workload Repository) are both Oracle performance diagnostic tools, but they serve different purposes and provide different types of information. Here’s a comparison of ASH and AWR:

1. Purpose and Scope

ASH (Active Session History)

AWR (Automatic Workload Repository)

2. Data Collection and Frequency

ASH

AWR

3. Data Provided

ASH

AWR

4. Reporting and Analysis

ASH

AWR

5. Use Cases

ASH

AWR

6. Summary

Both ASH and AWR are valuable tools for database performance analysis, with ASH focusing on real-time session data and AWR providing a broader, historical perspective.