Experto en sistemas y administración de bases de datos, apasionado de las Tecnologías de la Información
Query to obtain Cache Hit Ratio on IBM DB2
- Lee más sobre Query to obtain Cache Hit Ratio on IBM DB2
- Inicie sesión para enviar comentarios
The cache hit ratio is one of the indicators used for tuning tasks. It Measures the percentage of hits in memory, specifically in the bufferpools (each of them).
To get the cache hit ratio for each buffer pool configured to run this query:
SELECT SUBSTR(DB_NAME,1,8) AS DB_NAME, SUBSTR(BP_NAME,1,14) AS BP_NAME,
TOTAL_HIT_RATIO_PERCENT, DATA_HIT_RATIO_PERCENT,
INDEX_HIT_RATIO_PERCENT
FROM SYSIBMADM.BP_HITRATIO ORDER BY DBPARTITIONNUM