nerdexam
Oracle

1Z0-054 · Question #56

Examine the output of the following query: SQL> SELECT c.name,a.addr,a.gets,a.misses,a.sleeps, 2 a.immediate_gets,a.immediate_misses,b.pid 3 FROM v$latch a, v$latchholder b, v$latchname c 4 WHERE…

The correct answer is B. The latch was requested in willing-to-wait mode. C. The shared pool operations to allocate and free memory in it caused the misses. See the full explanation below for the reasoning.

Question

Examine the output of the following query:

SQL> SELECT c.name,a.addr,a.gets,a.misses,a.sleeps, 2 a.immediate_gets,a.immediate_misses,b.pid 3 FROM v$latch a, v$latchholder b, v$latchname c 4 WHERE a.addr = b.laddr(+) and a.latch# = c.latch# 5 AND c.name LIKE '&latch_name%' ORDER BY a.latch#; LATCH NAME ADDR GETS MISSES SLEEPS IMMEDIATE_GETS IMMEDIATE_MISSES ---- -------- -------- -------- ------- ------ -------------- shared pool 20016544 8520540 14112 3137 0 0 Which two conclusions can you draw from this? (Choose two.)

Options

  • AThe latch was requested in no wait mode.
  • BThe latch was requested in willing-to-wait mode.
  • CThe shared pool operations to allocate and free memory in it caused the misses.
  • DAutomatic Memory Management is not enabled because the IMMEDIATE_GETS and

How the community answered

(25 responses)
  • A
    8% (2)
  • B
    76% (19)
  • D
    16% (4)

Community Discussion

No community discussion yet for this question.

Full 1Z0-054 Practice