RE: What are the steps involved in Database Start...
connect as sys dba and after that give command startup open if u dont want to do any maintenance for the database.otherwise give starup nomount and then alter database mount and finally alter database open
RE: What are the steps involved in Database Start...
1. Log in as oracle (or any user in group dba)
2. Set your ORACLE_SID to the instance you want to start. Verify that your ORACLE_HOME is set to the correct database version
3. Start SQL*Plus and connect as sysdba
4. Start the database.
During database startup you can specify the state it will open to. The default is open(startup) but you can specify STARTUP NOMOUNT or STARTUP MOUNT depending on which task to perform.
RE: What are the steps involved in Database Start...
NOMOUNT : The init.ora file is read to check the existence of control files. MOUNT: The control file is read to get check the existence of data files and redolog files START: The status of various data files is check by comparing the SCN of the file headers of various data files and comparing them with the SCN in control file.