Skip to main content

The trouble with DBCC INPUTBUFFER()

DBCC INPUTBUFFER() is a very handy and easy to remember Database Console Command to show what SQL a specific user (mapped to a SPID) is executing. BUT it only returns a maximum of 255 characters which is often not enough to show the full command being executed.

There are a couple of solutions to this, thankfully. First, however, we need to know which users are currently logged in and their associated SPID (Server Process Identifier). To do this we use the trusty system stored procedure sp_who2:

EXEC sp_who2
GO

Click to enlarge





If we put the SPID we are interested in into:

DBCC INPUTBUFFER(54)

It returns the command being executed:

Click to enlarge




All well and good, but we can use this piece of code to return the full contents of the buffer:

USE master
GO

DECLARE @Handle BINARY (20)

SELECT @Handle = sql_handle
FROM sysprocesses
WHERE spid = 54

SELECT *
FROM ::fn_get_sql(@Handle)

Click to enlarge


I have happily been using the above script for years now, but wait there's a problem - ::fn_get_sql is marked as deprecated and though still currently available will be removed from future versions of SQL Server. Therefore we are being encouraged to use the Dynamic Management Function sys.dm_exec_sql_text() to return the text of commands. In the example below I have used sys.dm_exec_requests combined with the aforementioned function to return the contents of the buffer:

DECLARE @spid INT 
SET @spid = 54

SELECT r.session_id SPID
       ,r.STATUS
       ,r.command
       ,DB_NAME(database_id) 'DBName'
       ,t.TEXT
       ,wait_type
       ,last_wait_type
       ,percent_complete
       ,estimated_completion_time
FROM sys.dm_exec_requests r
CROSS APPLY sys.dm_exec_sql_text(r.sql_handle) t
WHERE r.session_id = @spid;

Click to enlarge


This is now my default way of dealing with this situation especially as we have some useful extra columns, however, remembering this (let alone typing it every time I need it) can be a nuisance so I have created a "snippet" from it - a new feature of SQL Server Management Studio 2012 details of which will follow in another posting. Previous to this I used snippets with the aid of SSMS Tools Pack which was free prior to the 2012 version but probably still worth buying if you like the other features it provides.

BTW, have you ever wondered what the double colon :: was before the function name? It is one of the peculiarities of SQL server and is only used in a few instances, more details of which can be found at Karen Delaney's blog.

This piece of code is ideal for a Snippet.

Comments

  1. Nice Article !
    This is my pleasure to read your article.
    Really this will help to people of SQL Server Community.

    I have also prepared one article about, Get last executed statement of lead blocker query using SQL Server DBCC Inputbuffer
    You can also visit my article, your comments and reviews are most welcome.

    http://www.dbrnd.com/2017/01/sql-server-dbcc-inputbuffer-to-find-the-last-statement-executed-by-a-spid-bloc-deadlock/

    ReplyDelete

Post a Comment

Popular posts from this blog

How to configure the SSAS service to use a Domain Account

NB Updating SPNs in AD is not for the faint hearted plus I got inconsistent results from different servers. Do so at your own risk! If you need the SSAS account on a SQL Server to use a domain account rather than the local “virtual” account “NT Service\MSSQLServerOLAPService”. You may think you just give the account login permissions to the server, perhaps give it sysadmin SQL permissions too. However, if you try and connect to SSAS  remotely  you may get this error: Authentication failed. (Microsoft.AnalysisService.AdomdClient) The target principal name is incorrect (Microsoft.AnalysisService.AdomdClient) From Microsoft: “A Service Principle Name (SPN) uniquely identifies a service instance in an Active Directory domain when Kerberos is used to mutually authenticate client and service identities. An SPN is associated with the logon account under which the service instance runs. For client applications connecting to Analysis Services via Kerberos authentication, th

How to move the Microsoft Assessment and Planning Toolkit (MAP) database to a different drive

The Microsoft Assessment and Planning Toolkit (MAP) is a very useful tool for scanning your network to find instances of SQL Server plus all manner of detailed information about the installed product, OS and hardware it sits on. <Click image to enbiggen> There is an issue with it the database it uses to store the data it collects, however. Assuming you don't have an instance called MAPS on your server, the product will install using LocalDB (a cut down version of SQL Server Express) and puts the databases on your C: drive. If you then scan a large network you could easily expand the database to 10GB which may cause issues on a server when that drive is often one of the smallest. However, there is a simple solution: connect to LocalDB using Management Studio, detach the databases, move to a different drive, set permissions on the new location if required and reattach the database. How do you connect to LocalDB? Here you go: Connect to (localdb)\MAPTOOLKIT The

SAN performance testing using SQLIO

Introduction This document describes how to use Microsoft’s SQLIO to test disk/SAN performance. It is biased towards SQL Server – which uses primarily 64KB and 8KB data pages so I am running the tests using those cluster sizes, however, other sizes can be specified.  Download SQLIO from https://www.microsoft.com/en-gb/download/details.aspx?id=20163   SQLIO is a command line tool with no GUI so you need to open a command prompt at  C:\Program Files (x86)\SQLIO  after you have installed it. Configuration First of all edit param.txt so that you create the test file we will be using. The file needs to be bigger than the combined RAID and on-board disk caches. In this case we are using a 50GB file. The “ 2”  refers to the number of threads to use when testing, you don’t need to change this now. The “ 0x0”  value indicates that all CPUs should be used, which you probably don’t want to change either, “ #”  is a comment. The only part you may want to change is 51200 (50GB) a