以编程方式运行 SQL Server 2000 作业
我知道您可以通过向存储过程 msdb.dbo.sp_start_job 发送调用来执行 SQL Server 2005/2008 中的作业。
但是,是否可以通过编程方式为 SQL Server 2000 执行此操作?
我正在使用 VB.NET,但我相信我使用的语言与如何进行操作无关。
如果有人知道如何在 VB.NET(或 C#,我可以转换它)中执行此操作,我将不胜感激。
编辑:看来它确实存在于2000年。我在 Management Studio 中找不到它,MSDN 的 2005 年“其他版本”链接只有 2005 年和 2008 年,而 google 只提供了 2005 年版本。抱歉浪费了大家的时间!
I know you can execute a Job in SQL Server 2005/2008 by sending a call to the Stored Procedure msdb.dbo.sp_start_job.
However is it possible to do this programmatically for SQL Server 2000?
I am using VB.NET however I believe the language I'm using is irrelevant on how to go about it.
If someone knows how to do it in VB.NET (or C#, I can convert it), I'd appreciate it.
Edit: Appears it does exist in 2000. I couldn't locate it in Management Studio, MSDN for the 2005 "Other Versions" link only had 2005 and 2008, and google was only bringing up the 2005 version. Sorry for wasting people's time!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://msdn.microsoft.com/en-us /library/aa260289(SQL.80).aspx
建议 SQL Server 2000 支持 sp_start_job
http://msdn.microsoft.com/en-us/library/aa260289(SQL.80).aspx
Suggests that sp_start_job is supported in SQL Server 2000
sp_start_job 也在 2000 年可用。
sp_start_job is available in 2000 as well.