SQL*Plus User's Guide and Reference Release 8.1.5 A66736-01 |
|
Database Administration, 3 of 5
An instance controls the background processes and the allocation of memory area to access an Oracle database.
Mounting the database associates it with a previously started instance.
Opening the database makes it available for normal database operations.
For more information about database STARTUP, see the Oracle8i Concepts manual. For information about the STARTUP command, see the "Command Reference" in Chapter 8.
To start an Oracle instance, without mounting the database, enter
SQL> STARTUP NOMOUNT
To start an instance, mount the database, but leave the database closed, enter
SQL> STARTUP MOUNT
To start an instance using the parameter file INITSALE.ORA, mount and open the database named SALES in exclusive mode, and restrict access to administrative personnel, enter
SQL> STARTUP OPEN sales PFILE=INITSALE.ORA EXCLUSIVE RESTRICT
Shutting down a database involves three steps:
When a database is closed, all database and recovery data in the SGA are written to the datafiles and redo log files, and closes all online datafiles.
Dismounting the database disassociates the database from an instance and closes the control files of the database.
Shutting down an instance reclaims the SGA from memory and terminates the background Oracle processes that constitute an Oracle instance.
For more information about database SHUTDOWN, see the Oracle8i Concepts manual. For information about the SHUTDOWN command, see the "Command Reference" in Chapter 8.
To shut down the database in normal mode once it has been opened and mounted, enter
SQL> SHUTDOWN Database closed. Database dismounted. ORACLE instance shut down.
|
Copyright © 1999 Oracle Corporation. All Rights Reserved. |
|