Oracle Database vs. Oracle Database Instance
Oracle uses a multi-layered architecture where the database and database instance are distinct yet interconnected. Understanding their differences is key for Oracle DBAs.
1. Oracle Database π
An Oracle Database is a collection of physical files that store data and metadata. It consists of:
β
Datafiles (.dbf
) β Store actual user and system data.
β
Control files (.ctl
) β Track database structure and SCN.
β
Redo log files (.log
) β Record all changes for recovery.
β
Temporary & Undo tablespaces β Handle transactions and rollback.
β
Archived logs β Used for database recovery (in ARCHIVELOG mode).
β Password File
β Alert logs logs
β Trace logs logs
πΉ The database persists even when the Oracle instance is shut down.
2. Oracle Database Instance π
An Oracle Instance is a combination of memory structures (SGA & PGA) and background processes that interact with the database.
Instance Components:
β
SGA (System Global Area) β Shared memory that holds cached data and SQL execution plans.
β
PGA (Program Global Area) β Memory specific to each session/process.
β
Background Processes β Key ones include:
- DBWR (Database Writer) β Writes data from memory to disk.
- LGWR (Log Writer) β Writes redo logs to disk for recovery.
- SMON (System Monitor) β Handles recovery and maintenance.
- PMON (Process Monitor) β Manages user connections and process cleanup.
πΉ The instance exists only when the database is running.
Key Differences:
Feature | Oracle Database | Oracle Instance |
---|---|---|
Definition | A collection of physical storage files | A combination of memory structures & background processes |
Persistence | Permanent (even after shutdown) | Temporary (exists only when running) |
Components | Datafiles, Control files, Redo logs, Tablespaces | SGA, PGA, Background Processes (DBWR, LGWR, PMON, SMON, etc.) |
Location | Stored on disk | Resides in RAM (memory) |
Startup Required? | Exists even when shut down | Created only when the database starts |
Example | /u01/oradata/orcl/system01.dbf | orcl (instance name) managed by pmon |
Real-World Example:
- When you start an Oracle database, an instance is created in memory.
- When you shut down the database, the instance is removed, but the database files remain.
- If a server crashes, the database files remain intact, but the instance must be restarted.
Command to Check Database & Instance:
Please log into an Oracle server, set up your environment with the database shutdown and perform a "start nomount". The database is NOT running, only the Oracle instance. You can start the instance without the database running.
ReplyDelete