Welcome to SSQA.net Sign in | Join | Help

SQL Server Storage Engine & Tools (SSQA.net)

SQL Server Tools includes storage engine that includes a complete set of graphical tools and command prompt utilities that allow users, programmers, and administrators. SSMS, SSRS, SSIS & SSAS are most commonly used tools.
Dig further for a process (SPID) using Query Analyzer (SQL 2000 version specific) not DBCC INPUTBUFFER though.

Based on this Troubleshoot a process (SPID) using tools & TSQL queries blog post I have been asked to provide same information within SQL Server 2000 version, as that talks about SQL 2005 version specific.

Within SQL 2000 to troubleshoot further about a SPID you can use:

DECLARE @Handle binary(20)
SELECT @Handle = sql_handle FROM sysprocesses WHERE spid = <spid>
SELECT * FROM ::fn_get_sql(@Handle)

 

Posted: Monday, August 20, 2007 4:53 AM by SQL Master

Comments

SSQA.net - SqlServer-QA.net said:

Based on this Troubleshoot a process (SPID) using tools &amp; TSQL queries blog post I have been asked

# August 20, 2007 5:12 AM

Other SQL Server Blogs around the Web said:

Based on this Troubleshoot a process (SPID) using tools &amp; TSQL queries blog post I have been asked

# August 20, 2007 5:24 AM

SQL Server Security, Performance & Tuning (SSQA.net) said:

When you run normal SELECT statement from the Activity Monitor, the session has a status of "suspended",

# August 29, 2007 3:30 AM

SQL Server Security, Performance & Tuning (SSQA.net) said:

This may be the typical situation within your database environment where the you might have killed a

# May 6, 2008 2:53 AM
Anonymous comments are disabled