(SQL 2005) Is it possible for a raiserror to terminate a stored proc.
For example, in a large system we've got a value that wasn't expected being entered into a specific column. In an update trigger if you write:
if exists (select * from inserted where testcol = 7) begin raiseerror('My Custom Error', 16, 1) end
the update information is still applied. however if you run
if exists (select * from inserted where testcol = 7) begin select 1/0 end
a divide by 0 error is thrown that actually terminates the update. is there any way i can do this with a raiseerror so i can get custom error messages back?