startup,startup mount,startup nomount之間的區別
轉載自:https://blog.csdn.net/wangshuai6707/article/details/40423437
startup,startup mount,startup nomount之間的區別
startup nomount選項:(讀初始化引數檔案,啟動例項)
startup nomount選項啟動例項,但不安裝資料庫。當資料庫以這個模式啟動時,引數檔案被讀取;後臺程式和記憶體結構被啟動;但它們不被附加或與資料庫的磁碟結構進行通訊。當例項處於這個狀態時,資料庫是不可使用的。
通常啟動到這裡可以做create database , create or recreate control file 或者是mount standby database等動作,修改parameter也是可以的。
startup mount 選項:(開啟控制檔案)
startup nount選項執行STARTUP NOMOUNT選項的所有工作,但另外附加資料庫結構並與這些結構進行互動。這時Oracle從它用來查詢和附加到主要資料庫結構的控制檔案中獲得資訊。當處於這個模式時,可以執行一些管理型任務,比如恢復。
讀取control file
通常啟動到這裡的目的有
recover dtabase ; backup database ; rename db files ,change archivelog mode等
startup open 選項:(開啟資料檔案,日誌檔案)
如果STARTUP命令列上沒有指定任何模式,STARTUP OPEN選項就是預設的啟動模式。STARTUP OPEN選項執行STARTUP NOMOUNT和STARTUP MOUNT選項的所有步驟。這個選項把資料庫變成對所有使用者都時可用的。
open datafile ,online redo log
startup force選項:
如果在用正常方式啟動資料庫時遇到了困難,可以使用STARTUP FORCE選項。STARTUP FORCE選項首先異常關閉資料庫,然後重新啟動它。
STARTUP RESTRICT選項:
STARTUP RESTRICT選項啟動資料庫並把它置入OPEN模式,但只給擁有RESTRICTED SESSION許可權的使用者賦予訪問權。
RMAN> startup nomount
已連線到目標資料庫 (未啟動)
Oracle 例程已啟動
系統全域性區域總計 135338868 位元組
Fixed Size 453492 位元組
Variable Size 109051904 位元組
Database Buffers 25165824 位元組
Redo Buffers 667648 位元組
RMAN> startup mount
已連線到目標資料庫 (未啟動)
Oracle 例程已啟動
資料庫已載入
系統全域性區域總計 135338868 位元組
Fixed Size 453492 位元組
Variable Size 109051904 位元組
Database Buffers 25165824 位元組
Redo Buffers 667648 位元組
RMAN> startup
已連線到目標資料庫 (未啟動)
Oracle 例程已啟動
資料庫已載入
資料庫已開啟
系統全域性區域總計 135338868 位元組
Fixed Size 453492 位元組
Variable Size 109051904 位元組
Database Buffers 25165824 位元組
Redo Buffers 667648 位元組
- Microsoft Windows XP [版本 5.1.2600]
- (C) 版權所有 1985-2001 Microsoft Corp.
- C:\Documents and Settings\Administrator>cd\
- C:\>sqlplus /nolog
- SQL*Plus: Release 9.2.0.1.0 - Production on 星期一 9月 21 15:21:50 2009
- Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
- SQL> connect / @dwj as sysdba
- 已連線。
- SQL> startup nomount
- ORA-01081: 無法啟動已在執行的 ORACLE --- 請首先關閉
- SQL> shutdown abort
- ORACLE 例程已經關閉。
- SQL> startup nomount
- ORACLE 例程已經啟動。
- Total System Global Area 135338868 bytes
- Fixed Size 453492 bytes
- Variable Size 109051904 bytes
- Database Buffers 25165824 bytes
- Redo Buffers 667648 bytes
相關文章
- startup mount與startup restrict mount有何區別REST
- oracle startup(nomount mount open restrict)OracleREST
- Oracle startup mount exclusive作用Oracle
- Oracle 資料庫啟動 startup和startup force的區別Oracle資料庫
- startup migrate、startup upgrade區別以及Oracle打補丁集文件(轉)Oracle
- 資料庫不能startup nomount ora-00600資料庫
- Jetpack之Startup快速掌握Jetpack
- STARTUP FORCE 理解
- Oracle shutdown and startupOracle
- MySQL Server Startup ScriptMySqlServer
- asp.net core 系列之StartupASP.NET
- oracle-startup過程Oracle
- Forced Startup in Abnormal Situations (292)ORM
- Restricting Access to a Database at StartupRESTDatabase
- oracle10201 startup nomount報ora-00600錯Oracle
- JavaWeb開發之load-on-startup用法JavaWeb
- download startup video in xlzhaoIDE
- Overview of Instance and Database Startup (289)ViewDatabase
- Restricted Mode of Instance Startup (291)REST
- Unable to startup CRS as ASM failed to startup with "ORA-01017:inval_1681849.1ASMAI
- [Oracle]startup mount時報ORA-12514錯誤的解決方法Oracle
- 理解ASP.NET Core - [01] StartupASP.NET
- .NET Core開發日誌——Startup
- How to Troubleshoot Grid Infrastructure Startup IssuesASTStruct
- [20120120]startup nomount訪問引數檔案的順序.txt
- 閱讀nopcommerce startup原始碼原始碼
- 巧用Startup簡化Java命令列程式Java命令列
- FATAL - Fatal error: Target Interaction Manager failed at StartupErrorAI
- Startup Genome:全球二十大技術中心
- JIRA startup failed, JIRA has been locked.AI
- #pragma用法(1)#pragma startup和#pragma exit
- Oracle Automatic Startup and Shutdown in Linux platformOracleLinuxPlatform
- Troubleshooting Database Control Startup IssuesDatabase
- ASP.NET Core[原始碼分析篇] - StartupASP.NET原始碼
- FastAPI 學習之路(五十四)startup 和 shutdownASTAPI
- Disable the automatic startup of the Oracle Clusterware (CRS|HAS) softwareOracle
- os thread startup等待事件HANG處理thread事件
- Oracle 啟動例程 STARTUP引數說明Oracle