1. 程式人生 > >檢視Oracle資料庫例項啟動狀態

檢視Oracle資料庫例項啟動狀態

SQL> conn / as sysdba
已連線到空閒例程。
SQL> startup nomount
ORACLE 例程已經啟動。
 
Total System Global Area  534462464 bytes
Fixed Size                  2177456 bytes
Variable Size             394266192 bytes
Database Buffers          130023424 bytes
Redo Buffers                7995392 bytes
SQL> select status from v$instance;
 
STATUS
------------------------
STARTED
 
SQL> alter database mount;
 
資料庫已更改。
 
SQL> select status from v$instance;
 
STATUS
------------
MOUNTED
 
SQL> alter database open;
 
資料庫已更改。
 
SQL> select status from v$instance;
 
STATUS
------------
OPEN
 
SQL>