You observed very low cache-hit ratio in your database as shown below:SQL> SELECT (1-((phy.value-phyd.value) / (cur.valu

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899559
Joined: Mon Aug 02, 2021 8:13 am

You observed very low cache-hit ratio in your database as shown below:SQL> SELECT (1-((phy.value-phyd.value) / (cur.valu

Post by answerhappygod »

You observed very low cache-hit ratio in your database as shown below:SQL> SELECT (1-((phy.value-phyd.value) / (cur.value + con.value))) * 1002 "Cache Hit ratio"3 FROM v$sysstat cur, v$sysstat con, v$sysstat phy, v$sysstat phyd4 WHERE cur.name = 'db block gets'5 AND con.name = 'consistent gets'6 AND phy.name = 'physical reads'7 AND phyd.name = 'physical reads direct';Cache Hit Ratio ----------------68.43After further investigation, you decided to increase the database buffer cache size. You are using theBuffer Cache Advisor to check the appropriate size for the buffer cache.View the Exhibit and examine the graph shown by the advisory.What can you infer from the graph?
You Observed Ve 1
You Observed Ve 1 (146.1 KiB) Viewed 145 times
A. The buffer cache size can be set to 12 MB for optimal performance.
B. The buffer cache size can be set to more than 16 MB to get more benefit.
C. The buffer cache size can be set to more than 16 MB but there would be no benefit from it.
D. The buffer cache size cannot be set to more than 16 MB because the SGA_MAX_SIZE value does not allow that.
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!

This question has been solved and has 1 reply.

You must be registered to view answers and replies in this topic. Registration is free.


Register Login
 
Post Reply