Viewing 4 posts - 1 through 5 (of 5 total)
ALTER TRIGGER [dbo].[example]
ON [dbo].[exampleTable]
AFTER Update
AS
BEGIN
BEGIN TRY
SELECT 1/0
END TRY
BEGIN CATCH
END CATCH
END
trigger have error here,you dont update,I want trigger skip error,update run.
April 8, 2010 at 2:34 am
#1148087
I want to update a table.even if A error occur in trigger,I want to update process complete.but when the error fall begin catch block, update dont complete.how I...
April 8, 2010 at 2:25 am
#1148082
ok:)
April 7, 2010 at 6:47 am
#1147267
thanks a lot:))
April 7, 2010 at 6:39 am
#1147254