Examine the query output shown below:
SQL> SELECT sum(pins), sum(reloads), sum(reloads)/sum(pins)
FROM v$librarycache;
SUM(PINS) SUM(RELOADS) SUM(RELOADS)/SUM(PINS)
---------- ------------ ----------------------
16479 16000 0.9709327
Which statement describes the correct interpretation of the reloads-to-pin ratio and the action to be taken?
Comments