Debugging techniques (focusing on T-SQL)

13

September 23, 2019 by Kenneth Fisher

tl;dr; Add PRINT and/or SELECT statements. Comment/uncomment out pieces of code to isolate problems. Change INSERT/UPDATE/DELETE statements to SELECTs.

Disclaimer: These are techniques I use all the time. There are almost certainly others. Use what you find works best for you.

Debugging stored procedures, functions, even views is something I end up doing quite a bit. Now, if you are a developer you are probably used to being able to step through your code, set watch values to see the contents of variables, etc. And technically, you can do this with SQL Server if you have access to the debugger. Of course, that requires sysadmin access and getting that can be problematic in anything but your own personal box. Not to mention if you have to figure out why this query isn’t pulling the data you expect in production .. well .. you’re out of luck there.

So what can we do instead? I have three major categories of debugging techniques.

Add PRINT and/or SELECT statements

This is a great way to find out what’s in a variable, or maybe what the query for an EXISTS statement is going to return. It’s also a great way to see which paths your code is taking. PRINT vs SELECT is pretty subjective and frequently you can use either or.

Kind of a contrived example, but let’s say we need to know what’s going on here.

DECLARE @MyDate datetime = getdate();
DECLARE @MyCounter int = 0, @MaxCounter int = 100;

WHILE @MyCounter < @MaxCounter
BEGIN
	IF @MyCounter % 3 = 0
		SET @MyDate = @MyDate + @MyCounter;
	ELSE
		IF @MyCounter BETWEEN 20 AND 30
			SET @MyDate = DATEADD(second, @MyCounter, @MyDate);
		IF @MyCounter BETWEEN 70 AND 100
			SET @MyDate = DATEADD(hour, @MyCounter, @MyDate);
END

 
Printing out @MyDate could be useful but most likely the first thing we want to do is find out why this is in a never ending loop. So at the end of the loop print out @MyCounter and @MaxCounter.

DECLARE @MyDate datetime = getdate();
DECLARE @MyCounter int = 0, @MaxCounter int = 100;

WHILE @MyCounter < @MaxCounter
BEGIN
	IF @MyCounter % 3 = 0
		SET @MyDate = @MyDate + @MyCounter;
	ELSE
		IF @MyCounter BETWEEN 20 AND 30
			SET @MyDate = DATEADD(second, @MyCounter, @MyDate);
		IF @MyCounter BETWEEN 70 AND 100
			SET @MyDate = DATEADD(hour, @MyCounter, @MyDate);
PRINT 'MyCounter ' + CAST(@MyCounter as varchar(20));
PRINT 'MaxCounter ' + CAST(@MaxCounter as varchar(20));
END

 
A few things of note here: I break formatting for these things. I always put them on the far left so that they are easy for me to find and remove. Either that or put something you can search on like maybe –Ken’s debug print before each of them. This can become very important when you have a few thousand lines of code and you’ve been working on it for a while. It can be embarrassing to have odd text printing out when it makes it into production.

Next, I printed out a label to go with the variable so I know what it is. Also, because of the way I’m handling this, if the variable is null the label won’t show up. I could use a SELECT @MyCounter, @MaxCounter; instead and neither of those would have been necessary. Anyway, obviously, I’m not incrementing @MyCounter since it’s always coming back as 0. So we fix that.

Now I want to know if/when it’s going into each of the possible if conditions.

DECLARE @MyDate datetime = getdate();
DECLARE @MyCounter int = 0, @MaxCounter int = 100;

WHILE @MyCounter < @MaxCounter
BEGIN
	IF @MyCounter % 3 = 0
		SET @MyDate = @MyDate + @MyCounter;
	ELSE
		IF @MyCounter BETWEEN 20 AND 30
		BEGIN
PRINT 'IF @MyCounter BETWEEN 20 AND 30'
PRINT 'MyCounter ' + CAST(@MyCounter as varchar(20));
			SET @MyDate = DATEADD(second, @MyCounter, @MyDate);
		END
		IF @MyCounter BETWEEN 70 AND 100
		BEGIN
PRINT 'IF @MyCounter BETWEEN 70 AND 100'
PRINT 'MyCounter ' + CAST(@MyCounter as varchar(20));
			SET @MyDate = DATEADD(hour, @MyCounter, @MyDate);
		END
	SET @MyCounter = @MyCounter + 1;
END

 
You’ll notice I had to add BEGIN .. END statements. That’s because IF only effects the next line and I want to run multiple lines of code within the condition. I’ve done prints that are just numbers (1, 2, 3 etc) but it’s generally best to do something descriptive. Also, while I’m at it I’m printing out the appropriate variable. It could have been @MyCounter, it could have been @MyDate, it could have even been a piece of code like DATEADD(hour, @MyCounter, @MyDate).

In a particularly long piece of code where I’m getting a fairly non-descript error, I’ve just thrown those PRINT 1, PRINT 2 etc statements all through the SP just to narrow down where the error is coming from.

Anyway, you get the idea.

Comment/uncomment out pieces of code to isolate problems.

I use this to simplify my code. For example, if I’m not getting enough rows of data back from a SELECT statement. The first thing I do is figure out one or two rows that aren’t there but should be. Next, I start removing pieces of the where clause until it shows up (I might add an additional condition to ONLY pull the rows I want). Then I can toggle back and forth (commenting and uncommenting conditions) until I’m certain what’s the problem. From there I can decide if it’s a logic problem or a data problem.

For example

SELECT name, number, type, low, high, status
FROM spt_values
WHERE low IS NOT NULL
  AND name LIKE '%data%';

On my machine (I’ll explain why in a minute) this returns nothing. But if I run this:

SELECT name, number, type, low, high, status
FROM spt_values
WHERE low IS NOT NULL
--  AND name LIKE '%data%';

I now get back quite a bit of data. I’m going to pick one row that I’m not getting, but I think I should be.

So let’s add to the WHERE clause so pull back just the row I want.

SELECT name, number, type, low, high, status
FROM spt_values
WHERE low IS NOT NULL
  AND name = 'DB Data Reader'
--  AND name LIKE '%data%'

Now I get back that one row. And if I uncomment out the LIKE condition I get back nothing. Interestingly, if I uncomment the LIKE condition and comment the IS NOT NULL condition I still get nothing back.

SELECT name, number, type, low, high, status
FROM spt_values
WHERE -- low IS NOT NULL
  --AND 
  name = 'DB Data Reader'
  AND name like '%data%';

After reviewing the data, and the condition it looks like it’s not a problem with the data. So what’s wrong with the WHERE condition? In the end, the answer is that my instance is case sensitive. So putting it all back together I end up with this:

SELECT name, number, type, low, high, status
FROM spt_values
WHERE low IS NOT NULL
  AND name = 'DB Data Reader'
  AND name like '%Data%';

And I get back the one row I’m looking for. At this point, I can remove my testing condition and I have the query I wanted.

SELECT name, number, type, low, high, status
FROM spt_values
WHERE low IS NOT NULL
  AND name like '%Data%';

Yes, I realize this is a somewhat simplistic example but it does demonstrate the technique pretty well. This get’s even more powerful when you have a dozen conditions (some of them fairly complicated with subqueries etc).

Change INSERT/UPDATE/DELETE statements to SELECTs.

When you are debugging you want to make as few actual data changes as you can since you are changing the data you are querying against, adding complexity when you try to re-run the statement and see what happens. So where possible/necessary change things like UPDATE, INSERT, DELETE to SELECT. Comment out the command line and change it to SELECT. Typically you’ll grab any columns in the WHERE clause and then for an UPDATE you’ll then want to grab the column you are changing and what you are changing it to. For a DELETE the WHERE clause info is usually enough and for an INSERT grab the WHERE clause info and the columns you are inserting.

Other

Know what your results should be!
If you don’t know what your output is supposed to be then you won’t know when you get it correct will you? This is surprisingly more of a problem than you would think. I read a lot of forum posts where the poster doesn’t really give you an accurate idea of what kind of output they want. As people start to question them it becomes obvious that even they don’t really know what they want in the first place.

Work in a development environment.
You’d think this would be obvious but even testing/debugging a relatively simple query should be done in a development/test environment. Your query may not be doing much but it’s still going to require some resources and take some locks. This can (and probably will) adversely affect production queries.

Have good representative data
This is the hardest part of the whole process. In order to make that development environment worthwhile, you need to make sure that you not only have data that matches your production data (although probably quite a bit less of it) but it should also have some good edge cases.

13 thoughts on “Debugging techniques (focusing on T-SQL)

  1. Simon Holzman says:

    I tend to have a standard table called _Debug on most of my systems which has the following fields:

    Debug_ID UNIQUEIDENTIFIER NOT NULL,
    Debug_Time DATETIME NOT NULL, — When was the record added
    Application_Name VARCHAR(100) NOT NULL, — What added the record
    Description VARCHAR(255), — General comments or progress notes
    Integer_Value INTEGER,
    String_Value VARCHAR(MAX),
    Date_Value DATETIME

    This can be used by almost anything to store data – many jobs have a start and end step that just logs the duration and frequency, but I can build in conditions so that, if an error occurs, it will write something more detailed, for example.

    I can prune the _Debug table using an automated job or even monitor it to send me an email if it finds any records that have Description LIKE ‘Error%’ AND Debug_Time > DATEADD(minute, -5, GETDATE()), for example…

  2. Denis VANDERMEERSCH says:

    In addition : PRINT may be replaced by RAISERROR(‘….’, 10, 1) with options :
    – WITH NOWAIT. This allows to get messages immediately in SSMS
    – WITH LOG. This throw your message in SQL Server logs and in Event Viewer Application Log

    More, with RAISERROR, you can insert placeholders in the message to place script variables in it.
    See
    https://docs.microsoft.com/fr-fr/sql/t-sql/language-elements/raiserror-transact-sql?view=sql-server-2017
    for the syntax.

  3. Jim Riedemann says:

    To add on to what Denis said, I have found that PRINT statements can be cached, whereas RAISERROR…WITH NOWAIT is displayed immediately. The caching becomes an issue when you’re trying to see which line of code is throwing a SQL error (which also displays immediately).

    I learned this the hard way after adding some “You are here!” PRINT comments into my code to see which line was throwing a general SQL error. The error would appear, followed by comments #3 and #4. There was NOTHING between comments #2 and #3 that could throw the error. Some comment on Google suggested that I switch to RAISERROR. When I ran the code, comment #3 was displayed, then the error, then comment #4. This was ultimately where the error truly was, between #3 and #4. The PRINT for #3 was cached!

  4. Robert Djabarov says:

    how about this?
    raiserror (”, 0, 1, @param1, @param2, @param3) with nowait

  5. Robert Djabarov says:

    the website parser removed what’s in the quotes…Oh well 🙂

  6. Ken Stuber says:

    There’s always the actual debugger included with SSDT. Set breakpoints, inspect variables, etc. Great stuff so long as you have an environment you can connect the debugger too (i.e. not production)

  7. RandyinMpls says:

    Also, if you see blocking or deadlocks:
    begin
    Your bad sql here
    EXEC sp_lock @@SPID
    END

  8. Ray Herring says:

    I generally define a variable @debug Int = 0.
    0 = Execute silently
    1 = Execute verbose
    2 = What if
    Then code similar to:
    If @debug >= 1 RaisError(‘my message with %d parameter’, 0, 0 , @myparm);
    If @debug <= 1
    Begin

    End
    The approach helps a lot when Dynamic SQL is in use.

  9. […] this post because I see @@ERROR frequently in legacy code and it sometimes comes in handy when doing temporary debugging code but for newer permanent code you are almost always going to be better off using TRY .. CATCH. It […]

  10. […] to the screen is a really basic debugging technique. That said, since I’m really new with Powershell this is something I needed to get good at […]

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Enter your email address to follow this blog and receive notifications of new posts by email.

Join 6,758 other subscribers

Follow me on Twitter

Archives

ToadWorld Pro of the Month November 2013