nerdexam
Oracle

1Z0-054 · Question #94

Examine the output of the following query: SQL> SELECT tablespace_name, tablespace_size, allocated_space, free_space 2 FROM DBA_TEMP_FREE_SPACE; TABLESPACE_NAME TABLESPACE_SIZE ALLOCATED_SPACE…

The correct answer is B. because the TEMP_L tablespace was shrunk. See the full explanation below for the reasoning.

Question

Examine the output of the following query:

SQL> SELECT tablespace_name, tablespace_size, allocated_space, free_space 2 FROM DBA_TEMP_FREE_SPACE; TABLESPACE_NAME TABLESPACE_SIZE ALLOCATED_SPACE FREE_SPACE ------------ ------------------ --------------- --------------- ---------- TEMP_L 157286400 144048128 157220864 TEMP 105906176 105906176 0 After some time you executed the same command and observed a different output, as shown below:

SQL> SELECT tablespace_name, tablespace_size, allocated_space, free_space 2 FROM DBA_TEMP_FREE_SPACE; TABLESPACE_NAME TABLESPACE_SIZE ALLOCATED_SPACE FREE_SPACE ------------ ------------------ --------------- --------------- ---------- TEMP_L 131072 65536 65536 TEMP 105906176 105906176 0 Why has the output changed?

Options

  • Abecause checkpoint occurred
  • Bbecause the TEMP_L tablespace was shrunk
  • Cbecause the database instance was restarted
  • Dbecause no sort operations are running currently

How the community answered

(47 responses)
  • A
    6% (3)
  • B
    74% (35)
  • C
    4% (2)
  • D
    15% (7)

Community Discussion

No community discussion yet for this question.

Full 1Z0-054 Practice