I can't seem to work this out. I want to kill my script if a variable is true. but I can't find any answers so far.
What I'm trying:
raiserror('Error', 18, -1)
Where @Variable='True';
I have declared and assigned the variable already
I can't seem to work this out. I want to kill my script if a variable is true. but I can't find any answers so far.
What I'm trying:
raiserror('Error', 18, -1)
Where @Variable='True';
I have declared and assigned the variable already
I want to counter-propose the advice of paneerakbari here.
Sure, Microsoft documentation recommends using throw
instead of raiserror.
However, Erland Sommarskog, a Microsoft MVP with a blog that consists of very enlightened posts, discusses in Part 2 of his Error and Transaction Handling article that THROW
does less stuff that raiserror, it requires a semicolon which might be perilously forgotten. I thus strongly recommend sticking to the less dangerous raiserror
.
The other answers here are correct about the structure of the conditional check, but I will recommend that you use
THROW
rather thanRAISERROR
, based on documentation. Microsoft's documentation https://learn.microsoft.com/en-us/sql/t-sql/language-elements/raiserror-transact-sql?view=sql-server-ver15And, as an aside, you should strongly consider not using text literals like 'true' or 'false' in your code and instead opt for the
BIT
datatype to achieve the same, where possible.