2

我正在研究一个 Powershell 脚本,该脚本将 CSV 文件作为输入,其中包含有关每个服务器上的服务器和数据库的信息,以便为文件中的每个服务器和数据库创建一个特定的登录名和用户。该脚本尝试使用 Invoke-SqlCmd 使用 SQL 命令创建登录名和用户,然后将尝试的结果输出到新的 CSV 文件。如果登录名和用户添加成功,则输出数据并显示成功消息,如果任一命令失败,则应输出数据并显示失败消息。现在,如果出现 Invoke-SqlCmd 错误,则脚本不会确认失败并输出运行成功。

我想要一些帮助来弄清楚如何编写我的 Try/Catch 块,以便它们真正捕捉到 SQL 命令失败并输出正确的消息。

我当前的 Try/Catch 块用于这些部分:

Try # Create Login
{
    # Importing sqlserver module to run the commands
    if (-not (Get-Module -Name "sqlserver"))
    {
        Import-Module sqlserver
    }
    Write-Host "Checking server $fullServerName to see if login [Example_Login] exists. Will create login if it does not already exist."
    Invoke-Sqlcmd -ServerInstance $fullServerName -Query "$loginCommand"

    Write-Host "Login command successfully executed.`n"
}
Catch
{
    Write-Host "An error has occurred while attempting to add login [Example_Login] to server $fullServerName."
    Write-Host $_
}

Try # Create database user
{
    Write-Host "Checking server $fullServerName to see if user [Example_User] exists on database $currentDatabase. Will create user if it does not already exist."
    Invoke-Sqlcmd -ServerInstance $fullServerName -Query "$databaseUserCommand"
    Write-Host "Database User command successfully executed.`n"
}
Catch
{
    Write-Host "An error has occurred while attempting to add user [Example_User] to login [Example_Login] on $currentDatabase."    
    Write-Host $_
}

运行上述代码时,我希望在运行 Invoke-SqlCmd 时发现问题,我收到以下错误,但脚本输出运行成功。

Invoke-Sqlcmd : Database 'MyDatabase' does not exist. Make sure that the name is entered correctly. 
 Msg 911, Level 16, State 1, Procedure , Line 2.
At E:\Create_Login.ps1:175 char:6
+ ...             Invoke-Sqlcmd -ServerInstance $fullServerName -Query "$da ...
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [Invoke-Sqlcmd], SqlPowerShellSqlExecutionException
    + FullyQualifiedErrorId : SqlError,Microsoft.SqlServer.Management.PowerShell.GetScriptCommand

我知道 Invoke-Sqlcmd 和错误处理(sourcesource)存在已知问题,但是有什么方法可以让我的脚本在这种情况下输出正确的消息?现在,我被困在手动进入我的输出文件并将消息从成功更改为失败。这是在工作环境中,所以我希望我的脚本能够由其他人执行,而他们也不必进行编辑。我只是犯了一些简单的错误吗?

任何帮助表示赞赏!

4

1 回答 1

4

如果收到错误,您想要做的就是告诉 cmdletInvoke-Sqlcmd停止,然后它将正确地命中您的 catch 块。你这样做-ErrorAction Stop。所以以这种方式使用命令将输入​​catch块

$fullServerName = 'Doesnotexist'
$loginCommand = "SELECT @@SERVERNAME"
Try # Create Login
{
    # Importing sqlserver module to run the commands
    if (-not (Get-Module -Name "sqlserver"))
    {
        Import-Module sqlserver
    }
    Write-Host "Checking server $fullServerName to see if login [Example_Login] exists. Will create login if it does not already exist."
    Invoke-Sqlcmd -ServerInstance $fullServerName -Query "$loginCommand" -ErrorAction Stop

    Write-Host "Login command successfully executed.`n"
}
Catch
{
    Write-Host "An error has occurred while attempting to add login [Example_Login] to server $fullServerName."
    Write-Host $_
}

通过 ps1 文件执行上述示例: 在此处输入图像描述

然后,如果我-ErrorAction Stop从脚本中删除: 在此处输入图像描述

于 2019-07-31T14:43:25.863 回答