尝试使用PowerShell获取镜像数据库的状态

时间:2016-12-29 12:34:50

标签: sql-server powershell

我正在尝试在powershell中测试以下脚本,该脚本获取镜像数据库的状态。

#SQL Variables

$sqlservers = "APNSQL01"

#SQL database mirroring status

$body +=echo "------------Originating Server-----------"`r`n""`r`n""    
Import-Module "sqlps" -DisableNameChecking

$body +=echo "--------Status of mirrored databases---------"`r`n""`r`n""
foreach ($server in $sqlservers){
    $body +=echo "Database mirroring state on $server

    "
    $body += Invoke-Sqlcmd -Query "USE master
            SELECT sys.database_mirroring.mirroring_state_desc
                ,sys.databases.name
            FROM sys.database_mirroring INNER JOIN sys.databases ON sys.database_mirroring.database_id=sys.databases.database_id
            WHERE mirroring_state_desc IS NOT NULL" -ServerInstance "$server" | out-string

}

当我运行此代码时,出现以下错误:

Invoke-Sqlcmd : A network-related or instance-specific error occurred while establishing a connection to SQL Server.
The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is
configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to
SQL Server)
At C:\Users\ctxadmin\Desktop\SQL.ps1:20 char:11
+     $body += Invoke-Sqlcmd -Query "USE master
+              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [Invoke-Sqlcmd], SqlException
    + FullyQualifiedErrorId : SqlExectionError,Microsoft.SqlServer.Management.PowerShell.GetScriptCommand
Invoke-Sqlcmd :
At C:\Users\ctxadmin\Desktop\SQL.ps1:20 char:11
+     $body += Invoke-Sqlcmd -Query "USE master
+              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ParserError: (:) [Invoke-Sqlcmd], ParserException
    + FullyQualifiedErrorId : ExecutionFailureException,Microsoft.SqlServer.Management.PowerShell.GetScriptCommand

我的SQL服务器是STANDARD数据库。它没有镜子。这是问题吗? 错误可能是什么?

0 个答案:

没有答案
相关问题