真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

oracle啟動怎么關(guān)閉,關(guān)閉oracle進(jìn)程

ORACLE數(shù)據(jù)庫啟動與關(guān)閉的步驟

oracle的啟動和關(guān)閉

創(chuàng)新互聯(lián)建站主要從事網(wǎng)站設(shè)計制作、成都網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)五通橋,10多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792

一、sql*plus方式:

用sql*plus來連接到Oracle

Sqlplus /nolog 是以不連接數(shù)據(jù)庫的方式啟動sql*plus

Connect /as sysdba 是以DBA身份連接到oracle

or35.gif

. 啟動

or36.gif

Startup就可以啟動了。

不過oracle啟動模式有3種:

l Startup nomount (nomount模式)啟動實例不加載數(shù)據(jù)庫。

l Startup mount (mount模式)啟動實例加載數(shù)據(jù)庫但不打開數(shù)據(jù)庫

l Startup (open 模式)啟動實例加載并打開數(shù)據(jù)庫,就是我們上面所用的命令

Nomount模式中oracle僅為實例創(chuàng)建各種內(nèi)存結(jié)構(gòu)和服務(wù)進(jìn)程,不會打開任何數(shù)據(jù)庫文件,

所以說:

1) 創(chuàng)建新數(shù)據(jù)庫

2) 重建控制文件

這2種操作都必須在這個模式下進(jìn)行。

Mount模式中oracle只裝載數(shù)據(jù)庫但不打開數(shù)據(jù)庫,所以說:

1) 重命名數(shù)據(jù)文件

2) 添加、刪除和重命名重做日子文件

3) 執(zhí)行數(shù)據(jù)庫完全恢復(fù)操作

4) 改變數(shù)據(jù)庫的歸檔模式

這4種操作都必須在這個模式下進(jìn)行

Open模式(就是我們上面的startup不帶任何參數(shù)的)正常啟動。

當(dāng)然這3種模式之間可以轉(zhuǎn)換:

Alter database mount(nomount模式)—〉alter database open(mount 模式)—〉(open模式)

當(dāng)然還有其它一些情況,在我們open模式下可以將數(shù)據(jù)庫設(shè)置為非受限狀態(tài)和受限狀態(tài)

在受限狀態(tài)下,只有DBA才能訪問數(shù)據(jù)庫,所以說:

1) 執(zhí)行數(shù)據(jù)導(dǎo)入導(dǎo)出

2) 使用sql*loader提取外部數(shù)據(jù)

3) 需要暫時拒絕普通用戶訪問數(shù)據(jù)庫

4) 進(jìn)行數(shù)據(jù)庫移植或者升級操作

這4種操作都必須在這個狀態(tài)下進(jìn)行

在打開數(shù)據(jù)庫時使用startup restrict命令即進(jìn)入受限狀態(tài)。

or37.gif

使用alter system disable restricted session命令即可以將受限狀態(tài)改變?yōu)榉鞘芟逘顟B(tài)。

or38.gif

使用alter system enable restricted session命令可以將非受限狀態(tài)變?yōu)槭芟逘顟B(tài)

or39.gif

使用alter database open read only可以使數(shù)據(jù)庫進(jìn)入只讀狀態(tài)。

使用alter database open read write 可以使數(shù)據(jù)庫進(jìn)入讀寫狀態(tài)。

當(dāng)然在某些情況下可能是用上述各種啟動方式都無法成功啟動數(shù)據(jù)庫,這個時候就要使用startup force命令來強行啟動數(shù)據(jù)庫。當(dāng)然誰都不想碰到這種情況:)

or40.gif

c.關(guān)閉數(shù)據(jù)庫

1)正常關(guān)閉 shutdown

2) 立即關(guān)閉 shutdown immediate

3) 關(guān)閉事務(wù) shutdown transactional

4) 強行關(guān)閉 shutdown abort,當(dāng)然誰都不想碰到這種情況。

二、OEM為例

Oracle Enterprise Management(OEM),

跟第一小節(jié)講的Sqlplus /nolog ,Connect /as sysdba 這2個命令差不多的操作如圖:

or29.gif

or30.gif

or31.gif

按照上面的一步步操作就能夠連接到數(shù)據(jù)庫。

下面是如何啟動和關(guān)閉數(shù)據(jù)庫:

or32.gif

點擊我們前幾章創(chuàng)建的ORADB01這個數(shù)據(jù)庫樹中的配置選項,這個里面的:

1)已啟動 對應(yīng) Nomount模式

2)已轉(zhuǎn)載 對應(yīng) mount模式

3)打開 對應(yīng) open模式

當(dāng)你點擊應(yīng)有按鈕之后就會進(jìn)入如下對話框

or33.gif

1)正常 對應(yīng) 正常關(guān)閉 shutdown

2) 立即 對應(yīng) 立即關(guān)閉 shutdown immediate

3) 事務(wù)處理 對應(yīng) 關(guān)閉事務(wù) shutdown transactional

4) 中止 對應(yīng) 強行關(guān)閉 shutdown abort

確定之后出現(xiàn)如下對話框

or34.gif

限制對數(shù)據(jù)庫訪問 對應(yīng) alter system disable restricted session

alter system enable restricted session

只讀模式 對應(yīng) alter database open read only

alter database open read write

簡單吧,sql*plus的一大堆命令到OEM中變成了幾個按鈕罷了。

3.windows控制臺

or41.gif

這個熟悉吧:

oracle ************Agent 用于OEM管理結(jié)構(gòu)

oracle************HTTPSERVER oracle Web服務(wù)器

oracle ************ManagementServer 用于OEM管理結(jié)構(gòu)

oracle ************ TNSListener oracle網(wǎng)絡(luò)結(jié)構(gòu)的服務(wù)器端進(jìn)程

oracle ************OEMREP 資料檔案庫文件

oracle ************ORADB001 用戶創(chuàng)建的數(shù)據(jù)庫

我一般都把所有的服務(wù)全部選成手動啟動,如果全開,內(nèi)存要用掉700M.............

怎樣啟動和關(guān)閉oracle數(shù)據(jù)庫

1、由于oracle運行在Linux系統(tǒng)里面,第一步,我們要連接Linux系統(tǒng)。

2、然后我們轉(zhuǎn)換到oracle安裝用戶里面。 我的是 oracle。

3、然后我們運行oracle的環(huán)境里的變量, 用來輸入相關(guān)命令。

4、進(jìn)去oracle的控制臺。輸入一個命令: sqlplus ?/ as sysdba。

5、如果要啟動數(shù)據(jù)庫,就輸入命令: startup。

6、如果關(guān)閉數(shù)據(jù)庫, 就輸入命令: shutdown immediate。

如何在linux下啟動和關(guān)閉ORCALE數(shù)據(jù)庫?

1. linux下啟動oracle\x0d\x0asu - oracle\x0d\x0asqlplus /nolog\x0d\x0aconn /as sysdba\x0d\x0astartup\x0d\x0aexit\x0d\x0alsnrctl start\x0d\x0aexit\x0d\x0a2. linux下關(guān)閉oracle\x0d\x0asu - oracle\x0d\x0asqlplus /nolog\x0d\x0aconn /as sysdba\x0d\x0ashutdown immediate\x0d\x0aexit\x0d\x0alsnrctl stop\x0d\x0aexit\x0d\x0a3、啟動監(jiān)聽器\x0d\x0aoracle@suse92:~ lsnrctl start\x0d\x0a4、停止監(jiān)聽器\x0d\x0aoracle@suse92:~ lsnrctl stop\x0d\x0a5、查看監(jiān)聽器狀態(tài)\x0d\x0aoracle@suse92:~ lsnrctl\x0d\x0aLSNRCTL status\x0d\x0aLSNRCTL exit\x0d\x0a6.# setup 可以設(shè)置防火墻等信息\x0d\x0a7.安裝監(jiān)聽器\x0d\x0a運行 netca 命令\x0d\x0alsnrctl start\x0d\x0alsnrctl stop\x0d\x0areload listener 重新加載\x0d\x0aservice listener\x0d\x0ahelp 幫助\x0d\x0aquit 退出\x0d\x0avi etc/hosts\x0d\x0a添加 192.168.0.100 chsylinux\x0d\x0a數(shù)據(jù)庫關(guān)閉死掉還可以STARTUP FORCE\x0d\x0a,再糟糕的情況用SHUTDOWN ABORT。

Linux下如何啟動、關(guān)閉Oracle以及打開關(guān)閉監(jiān)聽

1、以oracle用戶登錄系統(tǒng),如果是root用戶,使用su - oracle切換用戶。

2、以oracle用戶cd到oracle的bin目錄,cd $ORACLE_HOME/bin。

3、以nolog方式運行sqlplus。

4、以sysdba連接數(shù)據(jù)庫,如下SQL conn /as sysdba。

5、輸入用戶名sys 和密碼。

6、啟動數(shù)據(jù)庫實例,SQL startup;等待片刻,等到database opened就是打開數(shù)據(jù)庫實例成功了。

7、使用命令shutdown abort ?;或者? shutdown immediate?;?關(guān)閉數(shù)據(jù)庫。


名稱欄目:oracle啟動怎么關(guān)閉,關(guān)閉oracle進(jìn)程
標(biāo)題來源:http://weahome.cn/article/dsepjdc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部