Script Center > Gallery > Databases > List Currently-Executing Parallel Plans
TechNet Script Center logo

Welcome to the TechNet Script Center Gallery!

Each contribution is licensed to you under a License Agreement by its owner, not Microsoft. Microsoft does not guarantee the contribution or purport to grant rights to it.

List Currently-Executing Parallel Plans

(Microsoft)
VERIFIED AND TESTED BY THE SCRIPT CENTER TEAM
Rate it:
 
 
 
 
 
Script Code
VBScript
select 
  qs.sql_handle, 
  qs.statement_start_offset, 
  qs.statement_end_offset, 
  q.dbid,
  q.objectid,
  q.number,
  q.encrypted,
  q.text
from sys.dm_exec_query_stats qs
	cross apply sys.dm_exec_sql_text(qs.plan_handle) as q
where qs.total_worker_time > qs.total_elapsed_time
Platforms
Windows Server 2008 R2 No
Windows Server 2008 No
Windows Server 2003 No
Windows 7 No
Windows Vista No
Windows XP No
Windows 2000 No
For online peer support, join The Official Scripting Guys Forum! To provide feedback or report bugs in sample scripts, please start a new discussion on the Discussions tab for this script.
Disclaimer The sample scripts are not supported under any Microsoft standard support program or service. The sample scripts are provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event shall Microsoft, its authors, or anyone else involved in the creation, production, or delivery of the scripts be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or documentation, even if Microsoft has been advised of the possibility of such damages.
  • Wrong code
    1 Posts | Last Post: October 20, 2009
    • This query does not contain any reference to exec_context_id. I believe the proper query can be found in Tom's contribution to "Troubleshooting Performance Problems in SQL Server 2005":

      select
      r.session_id,
      r.request_id,
      max(isnull(exec_context_id, 0)) as number_of_workers,
      r.sql_handle,
      r.statement_start_offset,
      r.statement_end_offset,
      r.plan_handle
      from
      sys.dm_exec_requests r
      join sys.dm_os_tasks t on r.session_id = t.session_id
      join sys.dm_exec_sessions s on r.session_id = s.session_id
      where
      s.is_user_process = 0x1
      group by
      r.session_id, r.request_id,
      r.sql_handle, r.plan_handle,
      r.statement_start_offset, r.statement_end_offset
      having max(isnull(exec_context_id, 0)) > 0