sp_whoisactive has been immensely helpful, thank you :) . I do have few questions.
EXEC dbutil.dbo.sp_WhoIsActive
@output_column_list = '
[dd%]
[session_id]
[sql_text]
[sql_command]
[login_name]
[wait_info]
[cpu%]
[temp%]
[block%]
[reads%]
[writes%]
[context%]
[physical%]
[locks][%]',
@sort_order = '[physical_reads] DESC',
@show_sleeping_spids = 2
CPU - What is this measured in ?
Reads/Writes - Are these logical read/writes?
Used_memory - Is that used memory so far by the spid or batch within the sproc? What is this measured in?
Thanks