-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn1.sql
68 lines (55 loc) · 1.43 KB
/
n1.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
EXEC dbo.sp_WhoIsActive
@show_system_spids = 0
, @show_sleeping_spids = 0
, @get_full_inner_text = 0
, @get_plans = 1
, @get_outer_command = 1
, @get_transaction_info = 0
, @get_task_info = 1
, @get_additional_info = 1
, @find_block_leaders = 1
, @delta_interval = 0
, @output_column_list = '[dd%][status][ses%][data%][reads][writes][physical_reads][bl%][sql_t%][query%][wait_info][sql_c%][login_n%][open_tran%][wait_info][hos%][%]'
, @sort_order = '[CPU] DESC'
, @format_output = 1
-- Filter Areas
-- Database
--, @filter = 'ALLSAFE01D'
--, @filter_type = 'database'
-- Login
--, @filter = 'Ikleiman'
--, @filter_type = 'login'
-- Host
--, @filter = 'RECAPIWEB00'
--, @filter_type = 'host'
-- Program
--, @filter = 'Service%'
--, @filter_type = 'program'
-- Session
--, @filter = 70
--, @filter_type = 'session'
-- Not-Filter Areas
-- Database
--, @not_filter = ''
--, @not_filter_type = 'database'
-- Login
--, @not_filter = ''
--, @not_filter_type = 'login'
-- Host
--, @not_filter = 'RECAPIWEB00'
--, @not_filter_type = 'host'
-- Program
--, @not_filter = ''
--, @not_filter_type = 'program'
-- Session
--, @not_filter = 97
--, @not_filter_type = 'session'
--, @get_locks = 1
--, @show_own_spid = DEFAULT
--, @get_avg_time = 1
--, @destination_table = 'Audit.dbo.sp_whoisactive_output'
--, @return_schema = 0
--, @help = DEFAULT
--, @schema = DEFAULT
--*/
GO