Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
4k views

What do the different RAISERROR severity levels mean?

My best google result was this: below 11 are warnings, not errors 11-16 are available for use above 16 are system errors there is no behavioral difference among 11-16 But, from BOL, "Severity ...
7
votes
3answers
7k views

TRY and RAISERROR in T-SQL

Having a small issue and wondering if I'm using these correctly. In my SQL script is have BEGIN TRY // check some information and if there are certains errors RAISERROR ('Errors found, ...
5
votes
14answers
799 views

Stored Procs - Best way to pass messages back to user application

I'd like know what people think about using RAISERROR in stored procedures to pass back user messages (i.e. business related messages, not error messages) to the application. Some of the senior ...
4
votes
4answers
2k views

SQL Statment Termination using RAISERROR

(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 ...
3
votes
2answers
85 views

Using RAISERROR to indicate ACCESS DENIED error

I have a sproc that verifies whether the caller is authorized to call this sproc with given params. In case when the caller is not authorized, I want to RAISERROR with ACCESS DENIED error number. Now, ...
3
votes
2answers
331 views

RAISERROR―How to distinguish with SqlException?

I have some 3-4 stored procedures ― which I can modify if needed ― that use RAISERROR to inform my application of some fatal errors on the database side. Some of these stored procedures are executed ...
3
votes
1answer
199 views

How to print DateTime variable in the RAISERROR method?

My Stored Procedure accepts two params @EffectiveStartDate DATETIME @EffectiveEndDate DATETIME I wrote the validation code as this: IF(@EffectiveStartDate > @EffectiveEndDate) BEGIN ...
2
votes
1answer
155 views

Combining SQL `raiserror` with `select` in C#

I want to know if there is a way of using both SQL raiserror and retrieving the selected result in C#. ExecuteReader() in C# will throw an exception when raiserror occurs, but I still want to use the ...
2
votes
2answers
98 views

SQL Server and how to handle the type of error without conflict

I use SQL Server 2008 and ASP.NET C# and I have a stored procedure that returns some calculated rows. I want to check the parameters values before doing the process and I want to return a custom ...
2
votes
1answer
115 views

Is there a scalable alternative to SQL Server Query Notifications for raising events in an application from SQL Server?

SQL Server Query Notifications is a great tool, but it doesn't seem built to scale very well. Every application that wants/needs notifications has to keep an open connection to the database for the ...
2
votes
2answers
494 views

Accessing RAISEERROR message from cfstoredproc

I have a SQL stored procedure which under some situations will return a result of -1 if it fails, but also returns a message via the RAISERROR command e.g.: BEGIN RAISERROR ('Error %i has ...
2
votes
2answers
2k views

How to display error message generated from raiserror() with SQL Server

I am interacting with SQL Server 2005 from a jsp via JDBC (this is an assignment not a real project) and I have created a trigger in the database I am using. If a certain condition is not met when ...
1
vote
2answers
54 views

Raise a Particular Error in t-SQL with RAISERROR

I have a view that has an INSTEAD OF INSERT trigger (in SQL Server 2005). When the user inserts into the view, they are in fact making inserts and updates to a number of tables. The view is ...
1
vote
2answers
74 views

Exception flow in a stored procedure calling another stored procedure

I've got a stored procedure that calls another stored procedure. SP2 has a try/transaction/catch/rollback/raiserror. If SP2 raises an error, will it bubble up through SP1 to the caller, or do I have ...
1
vote
1answer
287 views

Not getting err code,type and state with Perl DBI (DBD::ODBC) on Sqlserver

I have a perl script which does the below to just run a insert stmnt and doing a deliberate RAISERROR. Now i can see that the error is generated but has the wrong error code - SQL-42000 , but the ...
1
vote
1answer
137 views

SQL Server Query Taking Too Long Handling?

I have a complex query inside a stored proc. Within the proc itself, I would like to judge how long things are taking and do a RAISERROR if I think a 30-second threshhold has been passed (which will ...
1
vote
1answer
494 views

T-SQL - Return custom error message and end query

I have a lengthy stored procedure in which I would like to do something like the following: IF @SubPageDirectory IS NULL BEGIN RAISERROR('@SubPageDirectory cannot be NULL', 10, 1) EXIT STORED ...
0
votes
2answers
54 views

How to set SQLException Number

I'm having an issue on settin up SqlException.Number On my Stored Proc i'm raising an error --@number = 50001 RAISERROR(@number, 16, 1) - I should expect that the Error_Number() should be @number ...
0
votes
2answers
63 views

Handling detailed exception in python

I am processing the data reading from test.xls file from sys import exe_info try: book = xlrd.open_workbook('test.xls') sh = book.sheet_by_index(0) for row in range( 1, ...
0
votes
2answers
52 views

Can you detect INSERT-EXEC scenario's?

Is it possible to DETECT whether the current stored procedure is being called by an INSERT-EXEC statement? Yes, I understand we may want to no longer use INSERT-EXEC statements...that is NOT the ...
0
votes
1answer
244 views

IF, RAISERROR & RETURN in Stored Procedure

I have a stored procedure, PROC, which receives some parameters. If one of them, @ID, is not null, a given stored procedure, PROC_A, must be executed. Otherwise, PROC_B must be executed. The problem ...
0
votes
0answers
200 views

raiserror in nested try-catch blocks

I'm having a problem with one stored procedure that doesn't work like i want. I'm using the stored procedure for update command in a dataset. The procedure (parent) is doing some inserts and after ...
0
votes
0answers
92 views

Alternatives to RAISERROR in C++ calling Sybase stored procs via standard ODBC driver

I'm working with some C++ code which calls Sybase stored procs. To handle errors, the stored procs use RAISERROR to pass error codes and predefined text (loaded using sp_addmessage) to a registered ...
0
votes
0answers
245 views

Why is RAISERROR in a remote procedure not elevated to a batch-abort error under DTC?

When a stored procedure is called in a distributed transaction and under certain conditions, the behavior in case of a 'statement-level' error changes. The conditions and behaviors are documented in ...
0
votes
1answer
286 views

T-SQL Raiserror Losses Message If Includes Datetime Converted To Char(10)

Okay, so I am trying to raise an error in T-SQL (SQL-2000). The base Sql code looks like this . . . declare @TmsString char(10), @TmsLast datetime, @UserMsg varchar(500) ...
0
votes
1answer
164 views

Stored Procedure Syntax Error at Recompile Time is Trapped by Catch AND Returns Empty Resultset

I am trying to isolate an issue (that resembles the topic in stackoverflow.com/q/483787/537284). The issue involves a stored procedure and occurs "randomly" once a week. To try and reproduce the ...
0
votes
1answer
384 views

T-SQL: How can i use RAISERROR for Informational Output Without Causing Script To Error?

Okay so i've got a stored proc which does a bunch of things (not important). Now, the stored proc is quite verbose, it prints out a lot of things (progress, rowcounts, etc). As you all know, using ...
0
votes
1answer
412 views

sql raiseerror error.number wrong in VB

I wrote a T-SQL query which includes a test for valid EmployeeNo. If the EmployeeNo is not valid, I do the following: RAISERROR(5005, 10, 1, N'Invalid Employee No') return @@Error Back in VB.Net I ...
0
votes
3answers
914 views

Raiserror in procedure (SQL Server 2005) is not caught in update process in client side(c#)

I am using stored procedure with RAISERROR. The error raised by the SP is not caught by the try catch statement in c#.Net. I'm using SqlDataSource for SQL connection and SqlDataSource_Updating event ...
0
votes
1answer
434 views

Ruby Web API scraping / error handling with Hpricot

I have written a simple ruby gem to scrape a set of websites, providing a simple API, inside the gem itself I have included a retry method... to attempt to use Hpricot 3 or more times on failure ...
0
votes
2answers
1k views

Formatting RAISERROR messages in SYBASE ASE 12.5

In a stored procedure, I am trying to test if a parameter is null or less then 1, and if so, raise an error with a friendly message, and the value of the parameter. Here is my code: IF @ID IS NULL ...
-1
votes
3answers
123 views

How to throw message and commit transaction using RAISERROR?

I need to use RAISERROR to throw a message(pop up message) and commit that transaction.Is there any option? For severity 18 the transaction got rollback.I have changed the severity to 10 and tried ...