- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: v$sess_io
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2005 12:40 AM
тАО08-09-2005 12:40 AM
CONSISTENT_GETS
CONSISTENT_CHANGES
May you explain them?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2005 12:48 AM
тАО08-09-2005 12:48 AM
Re: v$sess_io
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2005 12:50 AM
тАО08-09-2005 12:50 AM
Re: v$sess_io
http://www.lc.leidenuniv.nl/awcourse/oracle/server.920/a96536/ch3169.htm
found with a simple google
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2005 01:32 AM
тАО08-09-2005 01:32 AM
Re: v$sess_io
check this Metalink document
557629.994 consistent_changes real high
I would recommend you use statspack reports for a snapshot view as the view reflect total since the start of the instance.
Regards
Jean-Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2005 02:12 AM
тАО08-09-2005 02:12 AM
Re: v$sess_io
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2005 01:51 PM
тАО08-09-2005 01:51 PM
Re: v$sess_io
$SESS_IO view lists I/O statistics for each user session. It will have 1 row for each session connected to the database, and it tracks logical and physical I/O.
Block gets - logical i/o, current mode, usually DML activity.
Consistent gets - logical i/o, consistent mode, usually SELECT statements
Physical reads - physical i/o, if a block get or consistent get resulted in a cache miss, it caused a physical i/o.
Block changes - logical i/o, how many changes were applied to blocks due to DML. (Changes to current mode blocks)
Consistent changes - logical i/o, how many changes were applied to blocks for read consistency purposes. (Consistent mode changes)
CONSISTENT_CHANGES - Consistent changes for this session
CONSISTENT_GETS - Consistent gets for this session
CONSISTENT_GETS shows the number of blocks requested in consistent mode, for consistent read operations. Consistent gets is the number of blocks requested in consistent mode. Blocks are requested in consistent mode for consistent read operations. When a block is requested in consistent mode, if any changes have been committed or made to that block since the requesting statement (or transaction) began, then they must be rolled back for the purposes of the read, to give a consistent view of the data at that time.
When a block is requested in consistent mode, any changes will be rolled back so the SELECT query can get a read-consistent view of the data as of the time it started.
IA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-09-2005 04:22 PM
тАО08-09-2005 04:22 PM
Solutiona simpler explanation for "consistent gets" is:
The number of times a consistent read was requested for a block in the buffer cache. Consistent reads may require read asides to the undo (rollback) information and they will be counted here as well - the reads to the undo.
another important term is "db block gets" which is:
The total number of blocks read from the buffer cache in "CURRENT" mode. Blocks may be retrieved/used by Oracle in one of two ways - "CURRENT" or "CONSISTENT". A current mode get is a retrieve of a block as it exists right now. You will see these most frequently during modification statements since they must update only the latest copy of the block.
Both "db block gets" and "consistent gets" are both logical IO -- they read from the buffer cache.
hope this helps too!
regards
yogeeraj