Monday, 15 January 2018

Starting Up Oracle Database

Oracle Database starts in 3 below steps:

1- No Mount (where it read server parameter (spfile) file).

Connected to an idle instance.
SQL> startup nomount;
ORACLE instance started.
Total System Global Area 1207959552 bytes
Fixed Size                  8620080 bytes
Variable Size             771753936 bytes
Database Buffers          419430400 bytes
Redo Buffers                8155136 bytes

2- Mount (It reads controlfile)

SQL> alter database mount;
Database altered.

3- Open (Also know as read-write mode, where the Database is ready for performing operations)

SQL> alter database open;
Database altered.

SQL> select open_mode from v$database;

No comments:

Post a Comment

Installing Oracle 11g on Linux

Unpack Files Unzip the files. # 11.2.0.1 unzip linux.x64_11gR2_database_1of2.zip unzip linux.x64_11gR2_database_2of2.zip #11.2.0.2 u...