Invoke-Sqlcmd无法运行

时间:2017-03-13 11:52:11

标签: powershell cpu-usage invoke-sqlcmd

我有一个PowerShell脚本,用于检查运行它的服务器的CPU级别,然后如果它高于某个阈值,它将运行SQL存储过程和电子邮件。

该脚本在我的开发服务器上使用最新版本的PowerShell正确运行。但是,我在实时服务器上运行Invoke-Sqlcmd命令时遇到问题,我需要从中获取CPU值。为了举例,它可以称为LIVESERVER。 它正在运行PowerShell 2.0,我认为这是问题:

  

术语“Invoke-Sqlcmd”未被识别为cmdlet,函数,脚本文件或可操作程序的名称。检查名称的拼写,或者如果包含路径,请验证路径是否正确,然后重试。

我宁愿不对此服务器进行任何更改,因为它对业务至关重要(除非这是一项轻松的任务,无需重新启动即可更新PowerShell等。)

是否可以从我的开发服务器运行我的脚本并指定服务器来获取CPU数据?我不确定语法如何实现这一点。

这是我的剧本:

# Email 
$recipients = @("Ricky <ricky@email.com>")

# Loop 20 times
for ($i= 1; $i -le 20; $i++) {
    # Find CPU average usage percentage for given time period
    $cpuutil = (Get-Counter -Counter "\Processor(_Total)\% Processor Time" -SampleInterval 1 -MaxSamples 20 |
               select -ExpandProperty countersamples |
               select -ExpandProperty cookedvalue |
               Measure-Object -Average).Average

    # Display average CP output
    $cpuutil

    # If CPU average percentage is higher than given value, run stored procedure and
    # e-mail to notify
    if ($cpuutil -ge 60) {
        Invoke-Sqlcmd -Query "SELECT * FROM [Vehicle].[dbo].[tblIndicator]" -ServerInstance "LIVESERVER"
    }

    if ($cpuutil -ge 60) {
        Send-MailMessage -From "serverchecks@email.com" -To $recipients -Body "SP Ran" -Subject "Stored Procedure" -Dno onSuccess, onFailure -SmtpServer 111.1.1.111
    } else {
        Start-Sleep -s 10
    }
}

5 个答案:

答案 0 :(得分:8)

这应该有助于您的调试!

if (-not (Get-Command Invoke-Sqlcmd -ErrorAction SilentlyContinue)) {
    Write-Error "Unabled to find Invoke-SqlCmd cmdlet"
}

if (-not (Get-Module -Name SqlServer | Where-Object {$_.ExportedCommands.Count -gt 0})) {
    Write-Error "The SqlServer module is not loaded"
}

if (-not (Get-Module -ListAvailable | Where-Object Name -eq SqlServer)) {
    Write-Error "Can't find the SqlServer module"
}

Import-Module SqlServer -ErrorAction Stop

答案 1 :(得分:8)

确保已使用SQL Server安装Powershell模块: enter image description here

然后尝试导入模块SQLPS:

Import-Module SQLPS

另请参阅:https://blogs.msdn.microsoft.com/psssql/2008/09/02/sql-server-2008-management-tools-basic-vs-complete-explained/

答案 2 :(得分:4)

PowerShell v2不会自动加载模块,因此您需要自己加载相关模块或管理单元:

Add-PSSnapin SqlServerCmdletSnapin100
Add-PSSnapin SqlServerProviderSnapin100

[Source]

答案 3 :(得分:0)

如果导入模块失败,则需要首先运行安装模块。默认情况下,安装SSMS或SSDT不包括sqlserver模块。

install-module sqlserver
update-module sqlserver
import-module sqlserver

答案 4 :(得分:0)

在这个问题上花了将近一个小时。我在使用 MS Build 运行脚本时收到以下错误消息。

<块引用>

SQLCMD : 术语“SQLCMD”不被识别为 cmdlet 的名称, 函数、脚本文件或可运行的程序。

我终于发现在安装 SQL 服务器后重新启动 Windows 服务器 很神奇。现在我的脚本运行顺利。