1樓:匿名使用者
sysdba 就是管理員的最高許可權,所以可以連線,至於另一種情況你連線不上,具體給我看下
2樓:剛被豬不搞基
startup nomount選項:(讀初始化引數檔案,啟動例項)
startup nomount選項啟動例項,但不安裝資料庫。當資料庫以這個模式啟動時,引數檔案被讀取;後臺程序和記憶體結構被啟動;但它們不被附加或與資料庫的磁碟結構進行通訊。當例項處於這個狀態時,資料庫是不可使用的。
startup mount選項:(開啟控制檔案)
startup mount選項執行startup nomount選項的所有工作,但另外附加資料庫結構並與這些結構進行互動。這時oracle從它用來查詢和附加到主要資料庫結構的控制檔案中獲得資訊。當處於這個模式時,可以執行一些管理型任務,比如恢復。
startup open選項:(開啟資料檔案,日誌檔案)
如果startup命令列上沒有指定任何模式,startup open選項就是預設的啟動模式。startup open選項執行startup nomount和startup mount選項的所有步驟。這個選項把資料庫變成對所有使用者都時可用的。
startup force選項:
如果在用正常方式啟動資料庫時遇到了困難,可以使用startup force選項。startup force選項首先異常關閉資料庫,然後重新啟動它。
startup restrict選項:
startup restrict選項啟動資料庫並把它置入open模式,但只給擁有restricted session許可權的使用者賦予訪問權。
3樓:隨o天
啟動資料庫需要三個步驟:
1、建立例項 startup nomount2、安裝資料庫 alter database mount;
3、開啟資料庫 alter database open;
其中startup 是批處理形式,三步操作一起完成startup nomount 分步啟動startup mount 前兩步合併啟動,之後要執行alter database open
oracle11g資料庫例項的啟動問題
linux下的oracle11g 監聽和資料庫例項均啟動了但是客戶端無法連線
linux下的oracle11g 監聽和資料庫例項均已啟動,但客戶端無法連線的原因是什麼
oracle命令只能啟動資料庫例項,但不能裝載和開啟資料庫的是什麼
4樓:塵雨洛煙
startup nomout只啟動資料庫例程,startup mout裝載資料庫
5樓:匿名使用者
var mycars = new array()composite comp2 = new composite("composite xy");
comp2.add(new leaf("leaf xya"));
comp2.add(new leaf("leaf xyb"));
root.add(comp2);
root.add(new leaf("leaf c"));
6樓:
startup nomount
oracle資料庫例項啟動不了
oracle11g和oracle10g的區別
相對oracle10g而言,oracle 11g具有了與眾不同的特性。1 在oracle 11g中資料安全需求越來越高,擴充對lob和表空間的透明資料加密 transparent data encryption,即tde 特性來提高資料的安全性。2 oracle 11g新的securefile特性主...
oracle11g怎麼建立例項資料庫?
就是使用database configuretion assistant建立的資料庫的。試試使用管理員賬號開啟資料庫再建立。oracle11g如何建立資料庫 oracle11g建立資料庫的步驟如下 1 按住鍵盤上windows鍵,開啟開始選單,找到database configuration ass...
你好,我有oracle11g資料庫的問題需要你幫助
host localhost改成 host 本機ip 把 tnsname.ora中的sid 也配置成 本機的ip地址 1 啟動監聽服務,然後檢視 監聽狀態 c lsnrctl start c lsnrctl status 檢視狀態裡的監聽內容和你tnsnames.ora裡的配置是否一致2 用sqlp...