Viewing 5 posts - 1 through 5 (of 5 total)
Thanks to all who responded. The responses were helpful and varied. 🙂
~ Joshua
October 30, 2008 at 10:14 am
When I run what you provided, I do in fact get results. The text column contains the 3 statements that I ran to get the results in the first...
October 30, 2007 at 11:12 am
This is what I have done:
DBCC TRACEON(2861)
DECLARE @HANDLE BINARY(20)
SELECT @HANDLE = sql_handle from dbo.sysprocesses where spid = 55
SELECT text FROM ::fn_get_sql(@handle)
Am I supposed to run this from master? If...
October 30, 2007 at 10:40 am
When I use dbo.sysprocesses with my current database, I still get an error saying Invalid object name. If I use 'master' database, I get result with no rows. ...
October 30, 2007 at 9:25 am
Mayank,
Thank you for the reply. When I run the statement I get an error:
Invalid object name 'sys.sysprocesses'.
I am using SQL Server 2000. I am quite new to triggers...
October 29, 2007 at 3:46 pm
Viewing 5 posts - 1 through 5 (of 5 total)