P2Pprogrammer 2 programmer


Home > Interview Question and Answer > Oracle > Oracle System Architecture

Oracle System Architecture - DBA Interview Questions and Answers


Oracle System Architecture Interview Questions and Answers includes, ORACLE Instance, System Global Area (SGA), Database Buffers, Redo Log Buffers, Shared Pool, Shared SQL Area, Cursor, Program Global Area (PGA), User Process, Server Process, Server Configurations, Multi-threaded Server Configuration, ORACLE Background Process, Parallel Server option, DBWR, LGWR, checkpoint (CKPT), System Monitor (SMON),



Interview Questions and Answers for Oracle System Architecture


1. What constitute an ORACLE Instance?

SGA and ORACLE background processes constitute an ORACLE instance. (or) Combination of memory structure and background process.

2. What is SGA?

The System Global Area (SGA) is a shared memory region allocated by ORACLE that contains data and control information for one ORACLE instance.

3. What are the components of SGA?

Database buffers; Redo Log Buffer the Shared Pool and Cursors.

4. What do Database Buffers contain?

Database buffers store the most recently used blocks of database data. It can also contain modified data that has not yet been permanently written to disk.

5. What do Redo Log Buffers contain?

Redo Log Buffer stores redo entries a log of changes made to the database.

6. What is Shared Pool?

Shared Pool is a portion of the SGA that contains shared memory constructs such as shared SQL areas.

7. What is Shared SQL Area?

A Shared SQL area is required to process every unique SQL statement submitted to a database and contains information such as the parse tree and execution plan for the corresponding statement.

8. What is Cursor?

A Cursor is a handle (a name or pointer) for the memory associated with a specific statement.

9. What is PGA?

Program Global Area (PGA) is a memory buffer that contains data and control information for a server process.

10. What is User Process?

A user process is created and maintained to execute the software code of an application program. It is a shadow process created automatically to facilitate communication between the user and the server process.

11. What is Server Process?

Server Process handles requests from connected user process. A server process is in charge of communicating with the user process and interacting with ORACLE carry out requests of the associated user process.

12. What are the two types of Server Configurations?

Dedicated Server Configuration and Multi-threaded Server Configuration.

13. What is Dedicated Server Configuration?

In a Dedicated Server Configuration a Server Process handles requests for a Single User Process.

14. What is a Multi-threaded Server Configuration?

In a Multi-threaded Server Configuration many user processes share a group of server process.

15. What is a Parallel Server option in ORACLE?

A configuration for loosely coupled systems where multiple instances share a single physical database is called Parallel Server.

16. Name the ORACLE Background Process?

  1. DBWR - Database Writer
  2. LGWR - Log Writer
  3. CKPT - Check Point
  4. SMON - System Monitor
  5. PMON - Process Monitor
  6. ARCH - Archiver
  7. RECO - Recover
  8. Dnnn - Dispatcher
  9. LCKn - Lock
  10. Snnn - Server

17. What Does DBWR do?

Database writer writes modified blocks from the database buffer cache to the data files.

18. When Does DBWR write to the database?

DBWR writes when more data needs to be read into the SGA and too few database buffers are free. The least recently used data is written to the data files first. DBWR also writes when CheckPoint occurs.

19. What does LGWR do?

Log Writer (LGWR) writes redo log entries generated in the redo log buffer of the SGA to on-line Redo Log File.

20. When does LGWR write to the database?

LGWR writes redo log entries into an on-line redo log file when transactions commit and the log buffer files are full.

21. What is the function of checkpoint (CKPT)?

The Checkpoint (CKPT) process is responsible for signaling DBWR at checkpoints and updating all the data files and control files of the database.

22. What are the functions of SMON?

System Monitor (SMON) performs instance recovery at instance start-up. In a multiple instance system (one that uses the Parallel Server), SMON of one instance can also perform instance recovery for other instance that have failed SMON also cleans up temporary segments that are no longer in use and recovers dead transactions skipped during crash and instance recovery because of file-read or off-line errors. These transactions are eventually recovered by SMON when the tablespace or file is brought back on-line SMON also coalesces free extents within the database to make free space contiguous and easier to allocate.

23. What are functions of PMON?

Process Monitor (PMON) performs process recovery when a user process fails PMON is responsible for cleaning up the cache and Freeing resources that the process was using PMON also checks on dispatcher and server processes and restarts them if they have failed.

24. What is the function of ARCH?

Archiver (ARCH) copies the on-line redo log files to archival storage when they are full. ARCH is active only when a database's redo log is used in ARCHIVELOG mode.

25. What is function of RECO?

RECOver (RECO) is used to resolve distributed transactions that are pending due to a network or system failure in a distributed database. At timed intervals,the local RECO attempts to connect to remote databases and automatically complete the commit or rollback of the local portion of any pending distributed transactions.

26. What is the function of Dispatcher (Dnnn)?

Dispatcher (Dnnn) process is responsible for routing requests from connected user processes to available shared server processes and returning the responses back to the appropriate user processes.

27. How many Dispatcher Processes are created?

Atleast one Dispatcher process is created for every communication protocol in use.

28. What is the function of Lock (LCKn) Process?

Lock (LCKn) is used for inter-instance locking when the ORACLE Parallel Server option is used.

29. What is the maximum number of Lock Processes used?

Though a single LCK process is sufficient for most Parallel Server systems upto Ten Locks (LCK0,....LCK9) are used for inter-instance locking.

  Go Back to Oracle Interview Qusetion and Answers

More Oracle Database, DBA, Forms and Reports Interview Question and Answers

  1. Oracle Database Administration Interview Questions and Answers
  2. Oracle Cross Products and Matrix Reports Interview Questions and Answers
  3. Oracle Managing Distributed Databases Interview Questions and Answers
  4. Oracle Forms Interview Questions and Answers
  5. Oracle Database Security Interview Questions and Answers
  6. Oracle Database Operation Backup and Recovery Interview Questions and Answers
  7. Oracle Database Security and Administration Interview Questions and Answers
  8. Oracle Data Access Interview Questions and Answers
  9. Oracle Report Triggers Interview Questions and Answers
  10. Oracle Managing Backup and Recovery Interview Questions and Answers
  11. Forms 3.0, 4.0 Basic Interview Questions and Answers
  12. Oracle Package Procedure and Function Interview Questions and Answers
  13. Oracle System Architecture Interview Questions and Answers
  14. Oracle SQL Plus Statements Interview Questions and Answers
  15. Oracle Logical and Physical Architecture of Database Interview Questions and Answers
  16. Oracle Basics of Pl SQL Interview Questions and Answers
  17. Oracle Reports Interview Questions and Answers
  18. Oracle Concepts and Architecture Interview Questions and Answers
  19. Oracle Forms D2K 4.5 and 6i Interview Questions and Answers

Home > Interview Question and Answer > Oracle > Oracle System Architecture