Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How is Data Buffer Quality determined?

buffer Data quality
0
Posted

How is Data Buffer Quality determined?

0

Determining the ratio of physical reads and logical reads on the basis of V$SYSSTAT: (1 – “physical reads” / “session logical reads”) * 100 b) Determining the ratio of physical reads and logical reads on the basis of V$SYSSTAT, in which direct reads are not considered, since the data buffer is not read in direct reads. (1 – (“physical reads” – “physical reads direct” – “physical reads direct (lob)”) / (“session logical reads” – “physical reads direct” – “physical reads direct (lob)”) * 100 c) Determining the ratio of physical reads and logical reads on the basis of V$BUFFER_POOL_STATISTICS, in which direct reads are generally not considered in this view: (1 – PHYSICAL_READS / (DB_BLOCK_GETS + CONSISTENT_GETS)) * 100 Transaction ST04 uses method a) while transaction ST04N uses method b). When there are many direct reads (parallel query, lobs, PSAPTEMP access, …), the hit ratio issued by ST04N can be significantly better than the ST04 hit ratio. Method c) delivers similar results as me

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123