我正在尝试使用 powershell 自动启动和关闭一些 Oracle 实例。
到目前为止我想出的最好的如下
param(
[String]$Instance = $(Throw 'Instance required' ),
[String]$Password = $(Throw 'Password required'),
[String]$ShutdownMode = 'IMMEDIATE'
)
$validShutdownModes = ('IMMEDIATE', 'NORMAL', 'ABORT')
if($validShutdownModes -notcontains $ShutdownMode)
{
Throw 'Invalid ShutdownMode: [IMMEDIATE | NORMAL | ABORT]'
}
#Prepare the connection statement based on the Password and Instance name
$sqlConnect = 'connect sys/{0}@{1} as sysdba;' -f ($Password, $Instance)
#Prepare the shutdown statement based on the ShutdownMode
$sqlShutdown = 'shutdown {0};' -f ($ShutdownMode)
#Prepare the exit statement
$sqlExit = 'exit;'
#Get a temporary file for storing the SQLPLUS commands
$tmpFile = [System.IO.Path]::GetTempFileName()
#Write the commands to the file
Set-Content -path $tmpFile -value $sqlConnect
Add-Content -path $tmpFile -value $sqlShutdown
Add-Content -path $tmpFile -value $sqlExit
#Execute the commands
$output = &'sqlplus.exe' '/NOLOG' '@' $tmpFile
#Remove the temporary file
Remove-Item -path $tmpFile
#Dump the ouput of SQLPLUS to the console
$output
这可行,但它无法处理任何意外发生的事情,并且将密码写入临时文件远非理想。
有没有我可以用来关闭 Oracle 实例的编程接口,或者是使用 SQLPLUS 完成此类任务的更好方法?
一般来说,对 powershell 的任何一般性批评也值得赞赏。
谢谢
我没有使用 PowerShell 的经验。
但是,如何使用 ORADIM,Oracle 内置的 Windows 特定命令行来启动/停止数据库?它可以停止/启动数据库实例和 ASM 实例。
使用它比你的解决方法更干净:)
请在此处查看 Oracle 文档。它有启动和关闭的例子。
或使用 PowerShell 停止/启动 OracleServiceSID。