Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 
 

Oracle monitoring table I/O


Oracle Database Tips by Donald Burleson

Question: How do I track I/O at the table level?  I want to see I/O for a specific table.

Answer:  For tracking table-level I/O see my notes to v$segment_statistics.

If you are using approved RAID (SAME), the Stripe-and-Mirror-Everywhere architecture of Oracle Automatic Storage Management (ASM), a.k.a. RAID 1+0 or RAID 10, then you may not be interested in tracking I/O for specific tables and indexes.

Also, remember that most 64-bit databases will have a large data buffer cache (or a large disk RAM cache), such that "physical reads" might be overstated.  However, locating tables that are exposed to excessive "consistent gets" might indicate bad SQL that can be located via v$sql_plan and tuned by adding indexes.

Method for tracking object-level I/O with STATSPACK:

Using the level 7 STATSPACK collection it is now possible to track I/O at the individual segment level, showing disk I/O for any Oracle table or index.

SQL> execute statspack.snap (i_snap_level=>7, i_modify_parameter=>'true');

This level 7 STATSPACK snapshot collects all segment-level statistics, including logical and physical reads, row lock, and buffer busy waits.

We also have the  $ORACLE_HOME/rdbms/admin/catio.sql, that creates a stored procedure called sample_io and a view called io_per_object which holds real-time data on I/O per table.
 

select * from io_per_object;

For more information on Oracle tuning internals, see the book "Oracle Tuning: The Definitive Reference",


 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.