Displays activity information about the database buffer cache (also called the buffer pool). There are three sets of information: the overall buffer pool, the primary buffer pool, and the Alternate Buffer Pool.
PROMON Buffer Cache Activity display
The following shows a sample Buffer Cache Activity display.
06/30/09 Activity: Buffer Cache
11:35:03 06/30/09 11:23 to 06/30/09 11:33 (9 min 23 sec)
Total Per Min Per Sec Per Tx
Database Buffer Pool
Logical reads 28841 3074 51.23 7.14
Logical writes 32703 3485 58.09 8.10
O/S reads 358 38 0.64 0.09
O/S writes 748 80 1.33 0.19
Checkpoints 8 1 0.01 0.00
Marked to checkpoint 525 56 0.93 0.13
Flushed at checkpoint 463 49 0.82 0.11
Writes deferred 32161 3427 57.12 7.97
LRU skips 0 0 0.00 0.00
LRU writes 0 0 0.00 0.00
APW enqueues 0 0 0.00 0.00
Database buffer pool hit ratio: 99 %
The display lists the following types of buffer cache requests:
Logical Reads — The number of client requests for database block read operations.
Logical Writes — The number of client requests for database block write operations.
O/S reads — The number of database blocks read from disk.
O/S writes — The number of database block writes to disk.
Checkpoints — The number of checkpoint operations.
Marked at checkpoint — The number of blocks scheduled to be written before the end of a checkpoint.
Flushed at checkpoint — The number of blocks that were not written during the checkpoint and that had to be written all at once at the end of the checkpoint.
Writes deferred — The total number of changes to blocks that occurred before the blocks were written. Each deferred write is potentially an I/O operation saved.
LRU skips — The number of times a buffer on the LRU chain was skipped because it was locked or modified.
LRU writes — The number of blocks written to free a buffer for a read operation.
APW Enqueues — The number of modified buffers placed on the APW queue for writing.
Hit Ratio — The percentage of buffer cache requests that did not require a physical disk I/O operation.