Average time of disk dccess read/write in DB2
- Read more about Average time of disk dccess read/write in DB2
- Log in to post comments
Through DB2 we can get the average time in ms disk access is having DB2. These times are crucial for the detection of a IO problem with DB2 instance.
Usually we take into consideration that a value close to 2-3ms is good, more than 10ms can indicate problems.
Avg ms/write:
select trunc(decimal(sum(pool_write_time))/decimal( (sum(pool_data_writes)+sum(pool_index_writes))),3) from sysibmadm.snaptbsp
Avg ms/read: