啟動關閉Oracle資料庫批處理命令

2021-08-25 07:50:44 字數 1072 閱讀 2879

由於oracle的個頭是在不小,挺難伺候的,所以只是在學習資料庫知識用用而已的話很有必要,平時把服務關掉,要用到時在開啟。這樣能使配置不好的機子沒有必要花額外的計算機資源。要用到時再通過批處理命令,一起開啟或不用時一起關閉即可。

可以把oracle的服務設為手動啟動:計算機管理->服務。找到oracle開頭的幾個服務,都設為手動。

我用的是oracle_10g,參照資料寫了10g的批處理。

1、啟動:

@echo off

net start oraclecsservice

net start oracledbconsoleorcl

net start oracleoradb10g_homeisql*plus

net start oracleoradb10g_homesnmppeerencapsulator

net start oracleoradb10g_homesnmppeermasteragent

net start oracleoradb10g_hometnslistener

net start oracleserviceorcl

net start oracleservicezhpt

net start oracleservicezhpt

2、關閉:

@echo off

net stop oraclecsservice

net stop oracledbconsoleorcl

net stop oracleoradb10g_homeisql*plus

net stop oracleoradb10g_homesnmppeerencapsulator

net stop oracleoradb10g_homesnmppeermasteragent

net stop oracleoradb10g_hometnslistener

net stop oracleserviceorcl

net stop oracleservicezhpt

net stop oracleservicezhpt

windows nginx 快捷啟動關閉批處理指令碼

echo off rem author luwuer color f8 set nginx dir d nginx 1.12.2 info echo.echo 程序列表 tasklist findstr i nginx.exe if errorlevel 1echo nginx未啟動 echo 程序...

ORACLE資料庫啟動與關閉

leolin備註 windows系統下,sid為orcl的服務oracleserviceorcl啟動命令為 d oracle product 10.1.0 db 1 bin oracle.exe orcl,所以orcl資料庫已經為open狀態。1 shutdown normal 正常方式關閉資料庫。...

Oracle資料庫啟動和關閉

使用oracle 9i 資料庫 安裝完畢後oracle資料庫會自動啟動,下面我們用實際超作來說明一下oracle 9i資料庫的啟動和關閉。以oracle使用者登陸資料庫,開個控制台視窗 關閉oracle 9i 資料庫 強制關閉資料庫 shutdown abort 關閉oracle web serve...