Tagged Questions
The raiseerror tag has no wiki summary.
2
votes
1answer
274 views
SQL GOTO statement in a script with multiple GO
I need to exit a SQL script without an error if a certain condition holds true. I've read that 1 solution would be to raiseerror with error code 20+ and with log parameter. But the limitation for that ...
1
vote
1answer
141 views
What happens here? SQL Server - XACT_ABORT ON + @@ERROR Checking . .
What happens with this type of scenario?
SET XACT_ABORT ON
BEGIN TRANSACTION
---DO SOMETHING HERE THAT CAUSES AN ERROR
COMMIT TRANSACTION
if @@error != 0
raiserror('SP failed. Step 7.', 20, ...
1
vote
3answers
55 views
How to keep on transaction when it fails for some rows?
I want that when I execute a query for example DELETE FROM Contact, and an error is raised during the transaction it should delete the rows that are able to be deleted raising all the relevant errors ...
0
votes
1answer
31 views
Custom errors in mysql trigger [closed]
Possible Duplicate:
raise error within MySql function
In MsSQL I can raise a custom error:
CREATE TRIGGER [dbo].[TR__TABLE__DisableRowOnDelete]
ON [dbo].[TABLE]
INSTEAD OF DELETE
AS
BEGIN
...
0
votes
2answers
57 views
problem with raiseerror()
what I want to do is to create a stored procedure that executes insert statement.There is a possibility the execution to fail because of a check constraint for the table Employee.In that case I want ...
0
votes
2answers
721 views
How can I capture a SQL Stored Procedure Error triggered by RAISEERROR() in .asmx file?
I'm very new to .NET. All I've done so far is implement some SQL Stored Procedure calls as WebServices by copying and pasting existing code (as instructed by my superior).
I am calling some commands ...
0
votes
2answers
1k views
Raiseerror and Concat for the Message
I'd like to do something like this
raiserror(concat('Error in case @isFishy =', @isFishy, ' @isSmarmy=', @isSmarmy, ' @isTasty = ', @isTasty), 10, 1)
--or
raiserror('Error in case @isFishy =' + ...