1z0-062 Exam QuestionsBrowse all questions from this exam

1z0-062 Exam - Question 20


Examine the memory-related parameters set in the SPFILE of an Oracle database:

Which statement is true?

Show Answer
Correct Answer: B

The memory parameters shown indicate that `memory_target` is set to 5G and `memory_max_target` is set to 6G, with both `sga_target` and `sga_max_size` set to 0. This configuration means that Oracle will automatically manage both SGA (System Global Area) and PGA (Program Global Area) within the limits specified by `memory_target` and `memory_max_target`. Therefore, memory can be dynamically reallocated between the SGA and PGA as needed to meet the database's processing demands.

Discussion

3 comments
Sign in to comment
_gio_
Oct 1, 2021

https://docs.oracle.com/database/121/ADMIN/memory.htm#ADMIN11201

JMAN1
Jan 2, 2022

B is correct as _gio_ wrote. racle Database can manage the SGA memory and instance PGA memory completely automatically. You designate only the total memory size to be used by the instance, and Oracle Database dynamically exchanges memory between the SGA and the instance PGA as needed to meet processing demands.

_Cobra_
Apr 26, 2022

B is correct