<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www2.sqlblog.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx</link><description>NOTE: v8.40 is outdated at this time. Please try v9.57, which you can find here . It has been only a month and a half since I posted the last version of Who is Active? ( v7.30 ), but in that time I've made a huge number of changes, fixes, and enhancements.</description><dc:language>en</dc:language><generator>CommunityServer 2.1 SP2 (Build: 61129.1)</generator><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13020</link><pubDate>Tue, 31 Mar 2009 04:57:21 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13020</guid><dc:creator>Uri Dimant</dc:creator><description>&lt;p&gt;Hi Adam&lt;/p&gt;
&lt;p&gt;First of all I would like to thank you for this great stored procedure, well done. I have a question. You mentioned that it was to help identify blocked and blocking SPIDs so I have tried recently the simple script to identify &amp;nbsp;blocking.&lt;/p&gt;
&lt;p&gt;One con has &lt;/p&gt;
&lt;p&gt;begin tran&lt;/p&gt;
&lt;p&gt;update tbl set col='blbla'&lt;/p&gt;
&lt;p&gt;Sec.con&lt;/p&gt;
&lt;p&gt;select * from tbl&lt;/p&gt;
&lt;p&gt;Then I ran you script and see under'blocking session id' column &amp;nbsp;the second statement (select * from tbl), should not it be as BLOCKED (waiting)statement and UPDATE as a blocking one? And I do not see blocked session column, so I hope that I am missing something , can you please clarify?&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13022</link><pubDate>Tue, 31 Mar 2009 12:24:28 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13022</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Hi Uri,&lt;/p&gt;
&lt;p&gt;This works on my end:&lt;/p&gt;
&lt;p&gt;(SQL Server 2005 AW -- please share actual code if it's not working for you):&lt;/p&gt;
&lt;p&gt;--window #1--&lt;/p&gt;
&lt;p&gt;use adventureworks&lt;/p&gt;
&lt;p&gt;go&lt;/p&gt;
&lt;p&gt;begin tran&lt;/p&gt;
&lt;p&gt;update production.product&lt;/p&gt;
&lt;p&gt;set name = name&lt;/p&gt;
&lt;p&gt;go&lt;/p&gt;
&lt;p&gt;--/window #1--&lt;/p&gt;
&lt;p&gt;--window #2--&lt;/p&gt;
&lt;p&gt;use adventureworks&lt;/p&gt;
&lt;p&gt;go&lt;/p&gt;
&lt;p&gt;select * from production.product&lt;/p&gt;
&lt;p&gt;go&lt;/p&gt;
&lt;p&gt;--/window #2--&lt;/p&gt;
&lt;p&gt;--window #3--&lt;/p&gt;
&lt;p&gt;exec sp_whoisactive &lt;/p&gt;
&lt;p&gt;	@output_column_list = '[session_id] [blocking_session_id] [sql_text]'&lt;/p&gt;
&lt;p&gt;go&lt;/p&gt;
&lt;p&gt;--/window #3--&lt;/p&gt;
&lt;p&gt;... or another option, for window #3, if you want to see the sleeping SPID that's doing the blocking:&lt;/p&gt;
&lt;p&gt;--window #3 (alternate)--&lt;/p&gt;
&lt;p&gt;exec sp_whoisactive &lt;/p&gt;
&lt;p&gt;	@get_transaction_info = 1,&lt;/p&gt;
&lt;p&gt;	@output_column_list = '[session_id] [blocking_session_id] [sql_text]'&lt;/p&gt;
&lt;p&gt;go&lt;/p&gt;
&lt;p&gt;--/window #3 (alternate)--&lt;/p&gt;
&lt;p&gt;Does this make sense and is it working fine on your end?&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13036</link><pubDate>Wed, 01 Apr 2009 04:25:48 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13036</guid><dc:creator>Uri Dimant</dc:creator><description>&lt;p&gt;Hi Adam&lt;/p&gt;
&lt;p&gt;begin tran&lt;/p&gt;
&lt;p&gt;update production.product&lt;/p&gt;
&lt;p&gt;set name = name&lt;/p&gt;
&lt;p&gt;The above does no create blocking :-))))) &lt;/p&gt;
&lt;p&gt;begin tran&lt;/p&gt;
&lt;p&gt;update production.product&lt;/p&gt;
&lt;p&gt;set name ='T'+ name--- THAT does&lt;/p&gt;
&lt;p&gt;But again ,my point was that SELECT query is not BLOCKING but it is WAITING (blocked) and I was expected to see blocked AND bloking statements (in our case UPDATE and SELECT)&lt;/p&gt;
&lt;p&gt;exec sp_whoisactive &lt;/p&gt;
&lt;p&gt;@output_column_list = '[session_id] [blocking_session_id] [sql_text]'&lt;/p&gt;
&lt;p&gt;&amp;lt;?query --&lt;/p&gt;
&lt;p&gt;select * from Production.Product&lt;/p&gt;
&lt;p&gt;--?&amp;gt;&lt;/p&gt;
&lt;p&gt;What do you think?&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13046</link><pubDate>Wed, 01 Apr 2009 12:26:35 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13046</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Hi Uri,&lt;/p&gt;
&lt;p&gt;The script shows blocking session ID. &amp;nbsp;It's up to the user to look at the blocking session ID to find out what it is doing. &amp;nbsp;This was a decision I made to help improve performance and usability. &amp;nbsp;The script returns all of the data you need; you just need to do a bit of scrolling. &amp;nbsp;And as I mentioned before, you need to enable the @GET_TRANSACTION_INFO option if you want to see sleeping SPIDs with open transactions.&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13047</link><pubDate>Wed, 01 Apr 2009 12:32:02 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13047</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;By the way, the script I posted does indeed create blocking on my end. &amp;nbsp;Did you test it and not see blocking? &amp;nbsp;If so, what version are you testing against?&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13048</link><pubDate>Wed, 01 Apr 2009 12:57:18 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13048</guid><dc:creator>Uri Dimant</dc:creator><description>&lt;p&gt;Hi Adam&lt;/p&gt;
&lt;p&gt;Yes, sure, (btw I have been recomending your sp for many folks in newsgroup) , it would be nice to have blocking and waiting sessions as I can see here (without sleeping sessions), sorry for this long script. And yes, &amp;nbsp;your script did not created blocking on my end..&lt;/p&gt;
&lt;p&gt;Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86) &amp;nbsp; Nov 24 2008 13:01:59 &amp;nbsp; Copyright (c) 1988-2005 Microsoft Corporation &amp;nbsp;Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2) &lt;/p&gt;
&lt;p&gt;-- Detailed blocking information with query information&lt;/p&gt;
&lt;p&gt;SELECT&lt;/p&gt;
&lt;p&gt;	owt.session_id AS waiting_session_id,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;owt.blocking_session_id,&lt;/p&gt;
&lt;p&gt;	DB_NAME(tls.resource_database_id) AS database_name,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;(SELECT SUBSTRING(est.[text], ers.statement_start_offset/2 + 1,&lt;/p&gt;
&lt;p&gt;		(CASE WHEN ers.statement_end_offset = -1&lt;/p&gt;
&lt;p&gt;			THEN LEN(CONVERT(nvarchar(max), est.[text])) * 2&lt;/p&gt;
&lt;p&gt;			ELSE ers.statement_end_offset&lt;/p&gt;
&lt;p&gt;			END&lt;/p&gt;
&lt;p&gt;			- ers.statement_start_offset&lt;/p&gt;
&lt;p&gt;		) / 2)&lt;/p&gt;
&lt;p&gt;		FROM sys.dm_exec_sql_text(ers.[sql_handle]) AS est) AS waiting_query_text,&lt;/p&gt;
&lt;p&gt;	CASE WHEN owt.blocking_session_id &amp;gt; 0 &lt;/p&gt;
&lt;p&gt;	THEN (&lt;/p&gt;
&lt;p&gt;		SELECT&lt;/p&gt;
&lt;p&gt;			est.[text] FROM sys.sysprocesses AS sp&lt;/p&gt;
&lt;p&gt;			CROSS APPLY sys.dm_exec_sql_text(sp.[sql_handle]) as est&lt;/p&gt;
&lt;p&gt;			WHERE sp.spid = owt.blocking_session_id)&lt;/p&gt;
&lt;p&gt;	ELSE&lt;/p&gt;
&lt;p&gt;		NULL&lt;/p&gt;
&lt;p&gt;	END AS blocking_query_text,&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;(CASE tls.resource_type&lt;/p&gt;
&lt;p&gt;		WHEN 'OBJECT' THEN OBJECT_NAME(tls.resource_associated_entity_id, tls.resource_database_id)&lt;/p&gt;
&lt;p&gt;		WHEN 'DATABASE' THEN DB_NAME(tls.resource_database_id)&lt;/p&gt;
&lt;p&gt;		ELSE (SELECT &amp;nbsp;OBJECT_NAME(pat.[object_id], tls.resource_database_id)&lt;/p&gt;
&lt;p&gt;				FROM sys.partitions pat WHERE pat.hobt_id = tls.resource_associated_entity_id)&lt;/p&gt;
&lt;p&gt;		END&lt;/p&gt;
&lt;p&gt;	) AS object_name,&lt;/p&gt;
&lt;p&gt;	owt.wait_duration_ms,	&lt;/p&gt;
&lt;p&gt;	owt.waiting_task_address,&lt;/p&gt;
&lt;p&gt;	owt.wait_type,&lt;/p&gt;
&lt;p&gt;	tls.resource_associated_entity_id,&lt;/p&gt;
&lt;p&gt;	tls.resource_description AS local_resource_description,&lt;/p&gt;
&lt;p&gt;	tls.resource_type,&lt;/p&gt;
&lt;p&gt;	tls.request_mode,&lt;/p&gt;
&lt;p&gt;	tls.request_type,&lt;/p&gt;
&lt;p&gt;	tls.request_session_id,&lt;/p&gt;
&lt;p&gt;	owt.resource_description AS blocking_resource_description,&lt;/p&gt;
&lt;p&gt;	qp.query_plan AS waiting_query_plan&lt;/p&gt;
&lt;p&gt;FROM sys.dm_tran_locks AS tls&lt;/p&gt;
&lt;p&gt;	INNER JOIN sys.dm_os_waiting_tasks owt ON tls.lock_owner_address = owt.resource_address&lt;/p&gt;
&lt;p&gt;	INNER JOIN sys.dm_exec_requests ers ON tls.request_request_id = ers.request_id AND owt.session_id = ers.session_id&lt;/p&gt;
&lt;p&gt;	OUTER APPLY sys.dm_exec_query_plan(ers.[plan_handle]) AS qp&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13049</link><pubDate>Wed, 01 Apr 2009 13:06:35 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13049</guid><dc:creator>Uri Dimant</dc:creator><description>&lt;p&gt;Uh Adam, sorry, I got the info I was asking for , (it is time to go home). I have not enabled @GET_TRANSACTION_INFO=1&lt;/p&gt;
&lt;p&gt;exec sp_whoisactive @GET_TRANSACTION_INFO=1 ,&lt;/p&gt;
&lt;p&gt;@output_column_list = '[session_id] [blocking_session_id] [sql_text]'&lt;/p&gt;
&lt;p&gt;Now, testing your script (where name=name) I get blocking session ID is NULL and I see the UPDATE statement&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13050</link><pubDate>Wed, 01 Apr 2009 14:10:45 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13050</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Hi Uri,&lt;/p&gt;
&lt;p&gt;I'm considering having the script show, by default, all active SPIDs as well as sleeping SPIDs with open transactions. &amp;nbsp;I guess that would eliminate the confusion and remain true to the central goal of the script, which is to not show a bunch of garbage (a la sp_who). &amp;nbsp;It still wouldn't show the data in one row, but that's not something I'm willing to do at this point due to performance and blocking issues...&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13211</link><pubDate>Fri, 10 Apr 2009 16:52:45 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13211</guid><dc:creator>Michelle Ufford</dc:creator><description>&lt;p&gt;Adam, this is awesome! &amp;nbsp;The only change I made was to move the login_name and host_name further to the left, so it's faster to find out who I need to holler at. &amp;nbsp;;)&lt;/p&gt;
&lt;p&gt;Thanks for your work on this, it's really an excellent script. &amp;nbsp;&lt;/p&gt;
</description></item><item><title>Connect Item: Globally-Scoped Metadata Views</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13329</link><pubDate>Thu, 16 Apr 2009 15:17:06 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13329</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Ever tried writing a more or less database-agnostic administrative script? If the experience didn't make&lt;/p&gt;
</description></item><item><title>Do You Change the Results to Grid Font in SSMS?</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13511</link><pubDate>Fri, 24 Apr 2009 20:34:47 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13511</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Please respond and let me know: A) Whether you change it at all and B) If so, whether you use a fixed&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#13708</link><pubDate>Fri, 01 May 2009 18:43:23 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:13708</guid><dc:creator>Derek Frye</dc:creator><description>&lt;p&gt;Thanks for writing this, it works well.&lt;/p&gt;
&lt;p&gt;But now I know that sys.dm_exec_query_memory_grants doesn't exist on 2005 servers prior to SP1. Commenting out all of the references to it and &amp;quot;used_memory&amp;quot; allow it to function on those instances.&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#14147</link><pubDate>Mon, 18 May 2009 21:28:35 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:14147</guid><dc:creator>Daniel</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Well done Adam! &lt;/p&gt;
&lt;p&gt;I'm wondering it is possible add some extra filters like dbname, hostname, loginnme, program_name or even sql_test, is it?&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#14153</link><pubDate>Tue, 19 May 2009 14:15:34 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:14153</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Hi Daniel,&lt;/p&gt;
&lt;p&gt;Anything is possible :-) ... I've been thinking about some of these for a while but now that I have an actual request I'll bump them up in the queue. &amp;nbsp;Watch for them in the next version. &amp;nbsp;By the way, have you seen the current &amp;quot;beta build&amp;quot;? &amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://sqlblog.com/files/folders/beta/entry13855.aspx"&gt;http://sqlblog.com/files/folders/beta/entry13855.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#14162</link><pubDate>Tue, 19 May 2009 20:48:37 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:14162</guid><dc:creator>Daniel</dc:creator><description>&lt;p&gt;Hi Adam,&lt;/p&gt;
&lt;p&gt;Thank you, I'm really looking forward to new &amp;quot;stable&amp;quot; version. &lt;/p&gt;
&lt;p&gt;No, I haven't. I didn't know you write beta builds, I'll tray it today.&lt;/p&gt;
&lt;p&gt;By the way how long is your queue :-) ? &lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#15158</link><pubDate>Wed, 08 Jul 2009 09:05:56 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:15158</guid><dc:creator>Scott_Lotus</dc:creator><description>&lt;p&gt;Excellent procedure Adam, and thanks to Uri for pointing me in this direction.&lt;/p&gt;
</description></item><item><title>Adam Machanic : Who is Active? v8.82 - Harder, Better, Faster, Stronger</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#16155</link><pubDate>Thu, 20 Aug 2009 18:14:06 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:16155</guid><dc:creator>Adam Machanic : Who is Active? v8.82 - Harder, Better, Faster, Stronger</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://sqlblog.com/blogs/adam_machanic/archive/2009/08/20/who-is-active-v8-82-harder-better-faster-stronger.aspx"&gt;http://sqlblog.com/blogs/adam_machanic/archive/2009/08/20/who-is-active-v8-82-harder-better-faster-stronger.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#18455</link><pubDate>Mon, 02 Nov 2009 07:58:35 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:18455</guid><dc:creator>Ludwig</dc:creator><description>&lt;p&gt;Dear Adam,&lt;/p&gt;
&lt;p&gt;i've downloaded your script and tried to get it working in order to hunt down some cpu hogs.&lt;/p&gt;
&lt;p&gt;However if I execute it, I don't get any results.&lt;/p&gt;
&lt;p&gt;Anything I might have missed? Using SQL Server 2005&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#18512</link><pubDate>Wed, 04 Nov 2009 00:11:54 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:18512</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Hi Ludwig,&lt;/p&gt;
&lt;p&gt;Hard to say... There is something running, right? :-) You might want to try the most recent version and see if that works better for you:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://sqlblog.com/files/folders/beta/entry18386.aspx"&gt;http://sqlblog.com/files/folders/beta/entry18386.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#18529</link><pubDate>Wed, 04 Nov 2009 15:47:16 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:18529</guid><dc:creator>Ludwig</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;thanks for your feedback. Yes, something is definitly running (activity monitor also shows the activity), however the most recent version produces no output either. Any pitfalls I may have overseen?&lt;/p&gt;
&lt;p&gt;Thans,&lt;/p&gt;
&lt;p&gt;Ludwig&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#18535</link><pubDate>Wed, 04 Nov 2009 18:08:06 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:18535</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Hi Ludwig,&lt;/p&gt;
&lt;p&gt;That is really odd. Are you certain the SPIDs are active? Try setting @get_sleeping_spids = 2 in the newest version and see if that returns something. Let me know, either way! I would like to understand what's happening here.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#18676</link><pubDate>Mon, 09 Nov 2009 10:01:28 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:18676</guid><dc:creator>Ludwig</dc:creator><description>&lt;p&gt;Hi Adam,&lt;/p&gt;
&lt;p&gt;sorry it took me so long to reply.&lt;/p&gt;
&lt;p&gt;With @get_sleeping_spids=2 I get some results however not the active ones. We have found the root cause for the problem btw for our performance issues, which was a bug in the VM Ware infrastructure we are using - all i/o got delayed and the clocks where not updated. So it may be that the active spids are only short-time running from a systems perspective but where long-running from a global perspective- sorry, this sounds confusing. I will try again, when we have huge load on the server and get back to you.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Ludwig&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#18704</link><pubDate>Tue, 10 Nov 2009 02:07:57 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:18704</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Hi Ludwig,&lt;/p&gt;
&lt;p&gt;Interesting, thanks for sharing. Who is Active does use start times in some of its logic so if these are off it could cause it to misfire. But I haven't heard of this happening anywhere else yet. Will be quite curious to hear about what happens when you re-test.&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#18915</link><pubDate>Tue, 17 Nov 2009 21:25:54 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:18915</guid><dc:creator>Adam Machanic</dc:creator><description>&lt;p&gt;Ludwig: If you're still paying attention to this thread, please drop me a line at amachanic [at] gmail [dot] com. I would like to send you a new version of the proc to try out on your end.&lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#27657</link><pubDate>Thu, 05 Aug 2010 20:38:27 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:27657</guid><dc:creator>Shimon</dc:creator><description>&lt;p&gt;Hi Adam!&lt;/p&gt;
&lt;p&gt;Thanks for the great feature. &lt;/p&gt;
&lt;p&gt;I have a question.&lt;/p&gt;
&lt;p&gt;If there a way &amp;nbsp;to find a real Windows account if a &amp;nbsp;user connects to the database thru the service account used by the application. &lt;/p&gt;
&lt;p&gt;If not always is it possible in PeopleSoft application that runs on Sql Server. &lt;/p&gt;
</description></item><item><title>re: Who is Active? v8.40 - Now With Delta Power!</title><link>http://www2.sqlblog.com/blogs/adam_machanic/archive/2009/03/30/who-is-active-v8-40-now-with-delta-power.aspx#28117</link><pubDate>Sat, 21 Aug 2010 13:25:07 GMT</pubDate><guid isPermaLink="false">21093a07-8b3d-42db-8cbf-3350fcbf5496:28117</guid><dc:creator>toplum</dc:creator><description>&lt;p&gt;sure hope inplace will be possible. lots of customers want that.&lt;/p&gt;
</description></item></channel></rss>