open資料庫時 force 與 restrict兩種模式的意思

Dodd發表於2008-01-23
startup force 用在資料庫出現問題時,不能正常關閉時。
相當於 shutdown abort + startup
 
startup restrict是在資料庫處於shutdown狀態下開啟資料庫時的一種做法。
當資料庫以restrict方式開啟時,只有具有 RESTRICTED SESSION許可權的使用者才能登陸。
 
SQL> shutdown immediate
資料庫已經關閉。
已經解除安裝資料庫。
ORACLE 例程已經關閉。
SQL> startup restricted;
SP2-0714: 無效的        STARTUP 選項組合
SQL> startup restrict;
ORACLE 例程已經啟動。
Total System Global Area  135339844 bytes
Fixed Size                   454468 bytes
Variable Size             109051904 bytes
Database Buffers           25165824 bytes
Redo Buffers                 667648 bytes
資料庫裝載完畢。
資料庫已經開啟。
SQL> exit
 
E:\oracle\ora92\bin>sqlplus "aaa/bbb"
SQL*Plus: Release 9.2.0.4.0 - Production on 星期一 8月 28 16:03:22 2006
Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
ERROR:
ORA-01035: ORACLE only available to users with RESTRICTED SESSION privilege

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7220098/viewspace-157769/,如需轉載,請註明出處,否則將追究法律責任。

相關文章