3

在 Visual Studio 2008 中,无论是否有 catch 块,我都可以使用 CTRL+D+E 进行选择,使调试器在异常点中断。

在此处输入图像描述

SQL Server 2008 R2 Management Studio 中是否有类似的选项,其中存储过程执行将在引发错误时中断?

4

1 回答 1

0

在事务中使用 try 和 catch。例如:

create proc procexmaple (@parameter int)
as
    begin try
        begin transaction
            select  * from Employees where LastName = @parameter --this is an error converting nvarchar to int
        commit transaction
    end try

    begin catch
        select  * from [Orders] where OrderID = @parameter -- the catch will work and this will run
        rollback
    end catch
go

如果您想构建自己的错误,还可以查看如何使用 raiserror:

https://www.sqlservertutorial.net/sql-server-stored-procedures/sql-server-raiserror/

于 2020-01-07T12:42:54.620 回答