Table of Contents

Oracle Database - Database

About

A database in the context of Oracle is a collection of files (physical structures):

A database may be mounted and opened by many instances.

This physical structures contain logical structures:

Because the physical and logical structures are separate, the physical storage of data can be managed without affecting the access to logical storage structures.

Data Dictionary

select   
   db_unique_name,
   database_role,
   open_mode
from      
   v$database

Status / Open

SQL> select status from v$instance;

STATUS
------------
MOUNTED

SQL> alter database open;

Database altered.

apps/search/search.jsp