使用SSIS读取Windows计划任务
我想知道当 Windows 任务计划程序中的作业失败时,是否可以使用 SSIS 发送通知。有什么指点吗?
谢谢。
I would like to know if SSIS can be used to send out notifications when a job in Windows Task Scheduler fails. Any pointers?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C# 脚本任务可以使用 WMI 来查询状态。
http://msdn.microsoft.com/en- us/library/aa394601(v=vs.85).aspx
您也许可以使用 powershell 脚本任务来查询任务状态。
http://powershellscripttask.codeplex.com/
但是你必须在服务器上安装dll,这可能会不在您的组织中飞行。
您还可以使用某种类型的 powershell 在 sql server 中安排作业步骤。
A c# script task could use WMI to query the status.
http://msdn.microsoft.com/en-us/library/aa394601(v=vs.85).aspx
You could use a powershell script task to query the task status perhaps.
http://powershellscripttask.codeplex.com/
But then you have to install the dll on the server, which may not fly in your organization.
You can also schedule a job step in sql server with a type of powershell.