How is an Oracle database opened?
How is an Oracle database opened?
Rating:
The
When Oracle starts an instance, it determines the values of the initialization parameters by reading a specified initialization parameter file. After determining the values of the initialization parameters, Oracle allocates a System Global Area (SGA) (a shared memory area that contains data and control information for the instance) and creates background processes.
After getting started, the Oracle instance mounts the specified database to associate the database with the instance. The Oracle instance opens a control file (specified in the CONTROL_FILES initialization parameter of the initialization parameter file) and reads the names of the database's data files and online redo log files.
After mounting the database, the Oracle instance opens the database by opening the database's data files and online redo log files. At this stage, the database is available for normal database operations.
Rating:
Other articles
- What is a FOREIGN KEY constraint?
- What is service registration?
- When should an index be created?
- What is Recovery Manager (RMAN)?
- What is a checkpoint (CKPT) process?