Oracle
1Z0-054 · Question #154
Examine the following query and its output: SQL>SELECT namespace, gets, gethits, gethitratio, pins, pinhits, reloads,invalidations FROM v$librarycache WHERE namespace = 'SQL AREA'; NAMESPACE GETS…
The correct answer is A. About 24% of the parse calls were able to find a cursor to share. C. Library cache misses happened 118 times because invalidations occurred due to DDL on the. See the full explanation below for the reasoning.
Question
Examine the following query and its output:
SQL>SELECT namespace, gets, gethits, gethitratio, pins, pinhits, reloads,invalidations FROM v$librarycache WHERE namespace = 'SQL AREA'; NAMESPACE GETS GETHITS GETHITRATIO PINS PINHITS RELOADS INVALIDATIONS - -------- ----- ------- ----------- ----- ------- -------- ------------- SQL AREA 11942 2832 .237146207 65900 62486 28 118 Which two observations are correct? (Choose two.)
Options
- AAbout 24% of the parse calls were able to find a cursor to share.
- BDML locks were requested 65,900 times for objects in the SQL AREA.
- CLibrary cache misses happened 118 times because invalidations occurred due to DDL on the
- DReparsing of SQL statements before they had finished executing happened 28 times due to
How the community answered
(52 responses)- A79% (41)
- B10% (5)
- D12% (6)
Community Discussion
No community discussion yet for this question.