如何使 sql 作业步骤退出报告失败

发布于 2024-08-20 12:50:32 字数 193 浏览 7 评论 0原文

sql 作业步骤

我有一个像这样的

Declare 
@Result varchar(255)

exec myprocedure
@Result = @Result output

我想要做什么:
如果 @Result = 'Error' 则将作业标记为失败,我该如何实现这一点?

I have a sql job step

like this

Declare 
@Result varchar(255)

exec myprocedure
@Result = @Result output

What I want to do:
if @Result = 'Error' then mark the job as failed, how can I achieve that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

游魂 2024-08-27 12:50:32

将其添加到脚本的末尾:

if @Result = 'Error'
    raiserror('The stored procedure returned an error',16,1)

并确保在步骤属性的“高级”选项卡上,“失败操作”设置为“退出报告失败的作业”

Add this to the end of your script:

if @Result = 'Error'
    raiserror('The stored procedure returned an error',16,1)

And make sure that on the "Advanced" tab of the step properties, the "on failure action" is set to "Quit the job reporting failure"

萤火眠眠 2024-08-27 12:50:32

您可以使用尝试捕获

Begin Try
   exec myprocedure
   @Result = @Result output
End Try

Begin Catch
   /*Do whatever you want here*/
End Catch

You can use Try Catch

Begin Try
   exec myprocedure
   @Result = @Result output
End Try

Begin Catch
   /*Do whatever you want here*/
End Catch
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文