InterviewSolution
Saved Bookmarks
| 1. |
Which area of PGA stores binding variables and run-time buffers information?(a) SQL area(b) Private SQL area(c) Stack space(d) Session areaThe question was asked in a job interview.The origin of the question is Oracle Database 11g Architecture in section Oracle Database 11g Architecture Options of Oracle |
|
Answer» CORRECT option is (b) Private SQL area To explain I would SAY: PGA (Program Global Area) is a non-shared MEMORY REGION that contains data and control information exclusively for use by an Oracle process.The PGA is created by Oracle Database when an Oracle process is started. |
|