数据库事务(Database Transaction) ,是指作为单个逻辑工作单元执行的一系列操作,要么完整地执行,要么完全地不执行。那么在存储过程里添加事务,则可以保证该事务里的所有sql代码要么完全执行要么完全不执行。
Begin
Set NOCOUNT ON; --不返回影响行数
Set XACT_ABORT ON; --使用存储过程执行事务需要开启XACT_ABORT参数(默认为OFF)
delete from table1 where name='' --删除数据sql1
begin tran tran1 --开始一个事务tran1
delete from table1 where name='' --删除数据sql2
save tran tran2 --保存一个事务点tran2
update table2 set name='' where id='' --修改数据sql3
if @@error>0 --判断修改数据有没有错误(@@error表示返回与@@ERROR 最近的语句(即sql3)的非零的错误码,没有错误则返回0)
begin
rollback tran tran2 --回滚事务到tran2的还原点
commit tran tran1 --提交事务tran1
end
else --没有出错则提交事务tran1
commit tran tran1 --提交事务tran1
End