Multiple choice technology programming languages

Which is the memory area that is created when a dedicated server process is started, and contains data and information for that server process?

  1. SGA

  2. Streams Pool

  3. PGA

  4. Shared Pool

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

PGA (Program Global Area) is created when a dedicated server process starts and contains data and information specific to that server process. SGA (System Global Area) is shared by all processes. Streams Pool and Shared Pool are components within the SGA, not separate memory areas for dedicated processes. PGA is private to each process.