在服務(wù)中直接停止即可。
十余年的開平網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都全網(wǎng)營(yíng)銷的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整開平建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)從事“開平網(wǎng)站設(shè)計(jì)”,“開平網(wǎng)站推廣”以來(lái),每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
1、以windows10為例,右鍵“此電腦”,選擇“管理”。
2、然后選擇“服務(wù)和應(yīng)用程序”——“服務(wù)”。
3、找到oracle的服務(wù),一般名稱為oracleservice+實(shí)例名。
4 ?、右鍵,選擇停止,等待執(zhí)行完畢即可。
1、以oracle用戶登錄系統(tǒng),如果是root用戶,使用su - oracle切換用戶。
2、以oracle用戶cd到oracle的bin目錄,cd $ORACLE_HOME/bin。
3、以nolog方式運(yùn)行sqlplus。
4、以sysdba連接數(shù)據(jù)庫(kù),如下SQL conn /as sysdba。
5、輸入用戶名sys 和密碼。
6、啟動(dòng)數(shù)據(jù)庫(kù)實(shí)例,SQL startup;等待片刻,等到database opened就是打開數(shù)據(jù)庫(kù)實(shí)例成功了。
7、使用命令shutdown abort ?;或者? shutdown immediate?;?關(guān)閉數(shù)據(jù)庫(kù)。
1、shutdown normal 正常方式關(guān)閉數(shù)據(jù)庫(kù)。 2、shutdown immediate 立即方式關(guān)閉數(shù)據(jù)庫(kù)。 在SVRMGRL中執(zhí)行shutdown immediate,數(shù)據(jù)庫(kù)并不立即關(guān)閉, 而是在Oracle執(zhí)行某些清除工作后才關(guān)閉(終止會(huì)話、釋放會(huì)話資源), 當(dāng)使用shutdown不能關(guān)閉數(shù)據(jù)庫(kù)時(shí),shutdown immediate可以完成數(shù)據(jù)庫(kù)關(guān)閉的操作。 3、shutdown abort 直接關(guān)閉數(shù)據(jù)庫(kù),正在訪問(wèn)數(shù)據(jù)庫(kù)的會(huì)話會(huì)被突然終止,
在oracle11g中,數(shù)據(jù)庫(kù)的審計(jì)功能是默認(rèn)開啟的(這和oracle10g的不一樣,10g默認(rèn)是關(guān)閉的),\x0d\x0aoracle11gR2的官方文檔上寫的是錯(cuò)的,當(dāng)上說(shuō)default是none,而且是審計(jì)到DB級(jí)別的,這樣就會(huì)\x0d\x0a往aud$表里記錄統(tǒng)計(jì)信息。\x0d\x0a \x0d\x0a1.如果審計(jì)不是必須的,可以關(guān)掉審計(jì)功能;\x0d\x0a\x0d\x0aSQL show parameter audit_trail;\x0d\x0a\x0d\x0aNAME TYPE VALUE\x0d\x0a------------------------------------ ----------- ------------------------------\x0d\x0aaudit_trail string DB\x0d\x0a\x0d\x0aSQL alter system set audit_trail=none scope=spfile;\x0d\x0aSQL shut immediate;\x0d\x0aSQLstartup\x0d\x0a2.刪除已有的審計(jì)信息\x0d\x0a可以直接truncate表aud$,\x0d\x0atruncate table SYS.AUD$;\x0d\x0a\x0d\x0a3.或者將aud$表移到另外一個(gè)表空間下,以減少system表空間的壓力和被撐爆的風(fēng)險(xiǎn)。\x0d\x0a \x0d\x0a附:11g中有關(guān)audit_trail參數(shù)的設(shè)置說(shuō)明:\x0d\x0aAUDIT_TRAIL\x0d\x0aProperty Description\x0d\x0aParameter type String\x0d\x0aSyntaxAUDIT_TRAIL = { none | os | db [, extended] | xml [, extended] }\x0d\x0aDefault valuenone\x0d\x0aModifiable No\x0d\x0aBasic No\x0d\x0aAUDIT_TRAIL enables or disables database auditing.\x0d\x0aValues:\x0d\x0anone\x0d\x0aDisables standard auditing. This value is the default if the AUDIT_TRAIL parameter was not set \x0d\x0ain the initialization parameter file or if you created the database using a method other than \x0d\x0aDatabase Configuration Assistant. If you created the database using Database Configuration \x0d\x0aAssistant, then the default is db.\x0d\x0aos\x0d\x0aDirects all audit records to an operating system file. Oracle recommends that you use the os \x0d\x0asetting, particularly if you are using an ultra-secure database configuration.\x0d\x0adb\x0d\x0aDirects audit records to the database audit trail (the SYS.AUD$ table), except for records \x0d\x0athat are always written to the operating system audit trail. Use this setting for a general \x0d\x0adatabase for manageability.\x0d\x0aIf the database was started in read-only mode with AUDIT_TRAIL set to db, then Oracle Database \x0d\x0ainternally sets AUDIT_TRAIL to os. Check the alert log for details.\x0d\x0adb, extended\x0d\x0aPerforms all actions of AUDIT_TRAIL=db, and also populates the SQL bind and SQL text CLOB-type \x0d\x0acolumns of the SYS.AUD$ table, when available. These two columns are populated only when this \x0d\x0aparameter is specified.\x0d\x0aIf the database was started in read-only mode with AUDIT_TRAIL set to db, extended, then Oracle \x0d\x0aDatabase internally sets AUDIT_TRAIL to os. Check the alert log for details.\x0d\x0axml\x0d\x0aWrites to the operating system audit record file in XML format. Records all elements of the \x0d\x0aAuditRecord node except Sql_Text and Sql_Bind to the operating system XML audit file.\x0d\x0axml, extended\x0d\x0aPerforms all actions of AUDIT_TRAIL=xml, and populates the SQL bind and SQL text CLOB-type columns\x0d\x0a of the SYS.AUD$ table, wherever possible. These columns are populated only when this parameter \x0d\x0ais specified.\x0d\x0aYou can use the SQL AUDIT statement to set auditing options regardless of the setting of this \x0d\x0aparameter.
關(guān)閉的指令是 shutdown immediate ;
如果有正在增刪改之類的操作,數(shù)據(jù)庫(kù)會(huì)等操作完成后進(jìn)行關(guān)機(jī),如果沒(méi)有進(jìn)程在做增刪改操作則很快就會(huì)關(guān)閉數(shù)據(jù)庫(kù)了。
如果一直沒(méi)有關(guān)閉系統(tǒng),你可以嘗試用 shutdown abort 來(lái)強(qiáng)制關(guān)閉oracle系統(tǒng),不過(guò)不建議這么做,容易引起數(shù)據(jù)錯(cuò)亂或者發(fā)生未知后果的錯(cuò)誤。
這篇文章主要介紹了Oracle數(shù)據(jù)庫(kù)的啟動(dòng)與關(guān)閉方法 需要的朋友可以參考下 ?
一 啟動(dòng)數(shù)據(jù) $sqlplus "sys/pass as sysdba" sqlstartup
二 啟動(dòng)監(jiān)聽器 數(shù)據(jù)庫(kù)啟動(dòng)后 如果未啟動(dòng)監(jiān)聽進(jìn)程 則客戶端無(wú)法與數(shù)據(jù)庫(kù)連接 監(jiān)聽進(jìn)程的啟動(dòng)方法為 $lsnrctl start 在widnows中 可以從服務(wù)列表中啟動(dòng)監(jiān)聽器 監(jiān)聽里程配置文件為listener ora 位于目錄/home/app/oracle/product/ /db /neork/admin/ 此配置文件分為兩部分 一部分為監(jiān)聽程序本身的配置 包括協(xié)議 地址 端口號(hào)等 另一部分為監(jiān)聽程序所連接的數(shù)據(jù)庫(kù)的實(shí)例信息 包括 實(shí)例名 全局?jǐn)?shù)據(jù)庫(kù)名 oracle主目錄等 監(jiān)聽器可以利用oracle net config 向?qū)?lái)配置 要顯示監(jiān)聽器的運(yùn)行狀態(tài) $lsnrctl status; 要停止監(jiān)聽器 $lsnrctl stop
三 數(shù)據(jù)庫(kù)的啟動(dòng)過(guò)程 分為三個(gè)階段 啟動(dòng)實(shí)例 包括以下操作 ) 讀取參數(shù)文件 ) 分配SGA ) 啟動(dòng)后臺(tái)進(jìn)程 2.裝載數(shù)據(jù)庫(kù) 裝載數(shù)據(jù)庫(kù)是將數(shù)據(jù)庫(kù)與已啟動(dòng)的實(shí)例相聯(lián)系 數(shù)據(jù)庫(kù)裝載后 數(shù)據(jù)庫(kù)保持關(guān)閉狀態(tài) 3.打開數(shù)據(jù)庫(kù) 此步驟使用數(shù)據(jù)庫(kù)可以進(jìn)行正常的操作的處理 主要是打開控制文件 數(shù)據(jù)庫(kù)文件和日志文件
四 數(shù)據(jù)庫(kù)啟動(dòng)參數(shù) NOMOUNT:只啟動(dòng)實(shí)例 不裝載數(shù)據(jù)庫(kù) sqlstartup nomount MOUNT:啟動(dòng)實(shí)例 并裝載數(shù)據(jù) 但不打開數(shù)據(jù)庫(kù) sqlstartup mount READ ONLY:將數(shù)據(jù)庫(kù)置為只讀 sqlstartup mount sqlalter database open read only READ WRITE:以可讀寫方式打開數(shù)據(jù) 這是默認(rèn)方式 sqlstartup mount sqlalter database open read write OPEN:打開數(shù)據(jù)庫(kù) 這是默認(rèn)方式 sqlstartup mount sqlalter database open; RESTRICT:以受限方式打開 只有具有RESTRICTED SESSION權(quán)限的用戶才可以連接數(shù)據(jù)庫(kù) sqlstartup restrict PFILE:啟時(shí)指定參數(shù)文件 sqlstartup pfile=/u /user/mypfile ora FORCE:以強(qiáng)制方式啟動(dòng)數(shù)據(jù)庫(kù) sqlstartup pfile=/u /user/mypfile ora open restrict force
五 數(shù)據(jù)庫(kù)的關(guān)閉 與啟動(dòng)過(guò)程相對(duì)應(yīng) 關(guān)閉包括三個(gè)過(guò)程 1).關(guān)閉數(shù)據(jù)庫(kù) 2).卸載數(shù)據(jù)庫(kù) 3).關(guān)閉數(shù)據(jù)庫(kù)實(shí)例
1.NORMAL關(guān)閉方式 NORMAL關(guān)閉方式是正常關(guān)閉方式 是默認(rèn)關(guān)閉方式 在這種關(guān)機(jī)方式下 數(shù)據(jù)庫(kù)服務(wù)器必須等待所有客戶端從Oracle中正常退出時(shí) 才可以關(guān)閉數(shù)據(jù)庫(kù) SQLSHUTDOWN NORMAL 2.IMMEDIATE關(guān)閉方式 使用這種方式關(guān)閉數(shù)據(jù)庫(kù)時(shí) 系統(tǒng)將連接到數(shù)據(jù)庫(kù)的所有用戶尚未提交的事務(wù)全部回退 中斷連接 然后關(guān)閉數(shù)據(jù)庫(kù) SQLSHUTDOWN IMMEDIATE 3.ABORT關(guān)閉方式 ABORT關(guān)閉方式為異常方式 使用這種方式關(guān)閉數(shù)據(jù)庫(kù)時(shí) 系統(tǒng)立即將數(shù)據(jù)庫(kù)實(shí)例關(guān)閉 對(duì)事務(wù)膛數(shù)據(jù)完整性不作檢查 是最快的關(guān)機(jī)方式 sqlshutdown abort; 4.TRANSACTIONAL關(guān)閉方式 在這種關(guān)機(jī)方式中 數(shù)據(jù)庫(kù)必須等待所有的客戶運(yùn)行的事務(wù)結(jié)束 提交或回退 sqlshutdown transactional
sql startup force 強(qiáng)制啟動(dòng)
lishixinzhi/Article/program/Oracle/201311/19075