本文介绍了如何使用触发器进行回滚事务?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hi
i想要为回滚事务创建一个触发器,例如用户无法从TblParaCode中删除记录。

请帮帮我。

这是我的代码

hii want to create a trigger for rollback transaction, for exampel user can not delete a record from TblParaCode.
please help me .
this is my code

Create Trigger [dbo].[Test01]
On  TblParaCode
AFTER UPDATE,delete
AS
begin
if ((SELECT paracode From TblParaCode where typecode=29) =2)
begin
  RAISERROR('Cannot delete this record.',16,1)

 rollback transaction
end
end







谢谢。




thanks.

推荐答案


这篇关于如何使用触发器进行回滚事务?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-28 21:30