Hi Folks,
My system: DB2 v9.5_FP0 (Wintel),
I have database with poor performance. After performing some investigation I found the following:
The Synchronous Read Percentage (SRP) is 25.4.
using SQL:
SELECT SUBSTR(A.DB_NAME,1,10) as DBNAME,
CAST(( 100.0 - ((A.POOL_ASYNC_DATA_READS + A.POOL_ASYNC_INDEX_READS + A.POOL_ASYNC_XDA_READS) * 100.0)
/ (A.POOL_DATA_P_READS + A.POOL_INDEX_P_READS + A.POOL_XDA_P_READS + 0.01))
AS DECIMAL(5,2)) AS SRP,
A.DBPARTITIONNUM AS PART
FROM sysibmadm.SNAPDB A
ORDER BY A.DBPARTITIONNUM;
What could I do to increase the SRP?
Bufferpool hit ratio was 71%, so I increased the size of the BP.
Thanking you in advance.