Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

DBA: Instance - Startup

Back


Instance and Database Startup

startup

  Database Files User sqlplus Command Use Case
1 NOMOUNT: not yet associated parameter file N/A STARTUP NOMOUNT Create DB/BK/REC
2 MOUNTED: associated control file closed STARTUP MOUNTED Full REC/Maintaince
3 OPEN: associated,accessible data file accessible STARTUP OPEN Normal operation

Phase: No mount


Phase: Mounted



Phase: Open



Connection with Administrator Privileges

privilege Description Schema
SYSDBA(System Database Administrator) full control over the Oracle Database instance SYS
SYSOPER(System Operator) a subset of SYSDBA privileges, can perform basic operational tasks, cannot look as user data SYS
SYSBACKUP can perform backup and recovery operations.  
SYSDG(System Data Guard) can perform operations related to Data Guard  
SYSKM(System Key Management) can manage encryption keys used for TDE(Transparent Data Encryption)  

Commands to alter status

SQL Description
ALTER DATABASE MOUNT; associate the database instance with a specific database without fully opening it
ALTER DATABASE OPEN; open a previously mounted database.

TOP