關於ORACLE RESTRICT模式,以及START OPEN RECOVER
關於ORACLE RESTRICT模式,以及START OPEN RECOVER
說明如下:
Restricting Access to an Instance at Startup
You can start an instance, and optionally mount and open a database, in restricted
mode so that the instance is available onlyto administrative personnel (not general
database users). Use this mode of instance startup when you must accomplish one of
the following tasks:
■ Perform an export or import of data
■ Perform a data load (with SQL*Loader)
■ Temporarily prevent typical users from using data
■ Perform certain migration or upgrade operations
Typically, all users with the CREATE SESSIONsystem privilege can connect to an open
database. Opening a database in restricted mode allows database access only to users
with both the CREATE SESSIONand RESTRICTED SESSIONsystem privilege. Only
database administrators should have the RESTRICTED SESSIONsystem privilege.
關於如上文件,說明受限模式可以再你想做一些維護的時候,而不想其他非restrict許可權使用者登入的時候使用。
可以和STARTUP進行搭配啟動例項
startup [nomount|mount|open} restrict;
而ORACLE RESTART也可以使用
srvctl start database -d db_unique_name-o restrict
同時在正常資料庫使用期間也可以使用
SQL> ALTER SYSTEM DISABLE RESTRICTED SESSION;
System altered
SQL> ALTER SYSTEM enable RESTRICTED SESSION;
System altered
來啟用和禁用。但是注意經過測試,這個操作知識影響隨後的會話。已經連線的會話不受影響
關於open recover 說明如下:
If you know that media recovery is required, you can start an instance, mount a
database to the instance, and have the recovery process automatically start by using
one of these commands:
也就是說如果你確定需要進行介質恢復的時候可以使用,而代替RECOVER DATABASE。但是用處不大
恢復是一件嚴肅的事情,一般不會交由自動處理。
使用如下命令啟動:
STARTUP OPEN RECOVER
而ORACLE RESTART也可以使用
srvctl start database -d db_unique_name-o "open,recover"
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7728585/viewspace-1270116/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle startup(nomount mount open restrict)OracleREST
- open資料庫時 force 與 restrict兩種模式的意思資料庫REST模式
- 關於web start的問題Web
- ORACLE 受限RESTRICT模式,只讀READ ONLY模式,靜默QUIESCE模式,延遲SUSPEND模式解釋OracleREST模式UI
- 關於檔案的open方法
- 關於oracle 10G for suse 9 的rman: can't open targetOracle 10g
- 關於fast_start_parallel_rollback引數ASTParallel
- 關於FAST_START_MTTR_TARGET引數AST
- 關於引數fast_start_mttr_targetAST
- __restrictREST
- oracle recover 原理概括Oracle
- recover and open db if archivelog required for recovery is either miss_465478.1HiveUI
- oracle nomount mount open直接的關係Oracle
- 2.2.3 關於配置Oracle-Home只讀模式Oracle模式
- 關於open session in view,想在此請教!SessionView
- 關於資料庫open的深入探究資料庫
- 關於Decorator模式模式
- 關於Template模式模式
- 關於session.auto_start報警的問題Session
- 關於資料庫open的深入探究(轉)資料庫
- linux start oracleLinuxOracle
- Oracle Start with ....Connect ByOracle
- 關於session.auto_start報警的問題薦Session
- 關於單例模式單例模式
- 關於門面模式模式
- 關於設計模式設計模式
- 記一次小坑–關於window.open()
- 記一次小坑--關於window.open()
- 關於多例模式-from單例模式模式單例
- 關於Adapter模式和Decorator模式APT模式
- oracle restore與recover的區別OracleREST
- 關於oracle的表空間,分割槽表,以及索引的總結Oracle索引
- START WITH and CONNECT BY in Oracle SQLOracleSQL
- 關於 oracle NULLOracleNull
- 關於oracle with as用法Oracle
- 關於ORACLE AUTOTRACEOracle
- oracle和mysql關於關聯更新的一些差別以及ERROR 1093OracleMySqlError
- 關於Servlet的原理以及常用類Servlet