Created
January 22, 2018 23:26
-
-
Save petesql/9d472895a4bbf94fa935a65c773f66bf to your computer and use it in GitHub Desktop.
who_is_active_parameters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sp_whoisactive @get_plans = 1; | |
--http://whoisactive.com/docs/06_options/ | |
@filter sysname = '' | |
@filter_type VARCHAR(10) = 'session' | |
@not_filter sysname = '' | |
@not_filter_type VARCHAR(10) = 'session' | |
@show_own_spid BIT = 0 | |
@show_system_spids BIT = 0 | |
@show_sleeping_spids TINYINT = 1 | |
@get_full_inner_text BIT = 0 | |
@get_plans TINYINT = 0 | |
@get_outer_command BIT = 0 | |
@get_transaction_info BIT = 0 | |
@get_task_info TINYINT = 1 | |
@get_locks BIT = 0 | |
@get_avg_time BIT = 0 | |
@get_additional_info BIT = 0 | |
@find_block_leaders BIT = 0 | |
@delta_interval TINYINT = 0 | |
@output_column_list VARCHAR(8000) = '[dd%][session_id][sql_text][sql_command][login_name][wait_info][tasks][tran_log%][cpu%][temp%][block%][reads%][writes%][context%][physical%][query_plan][locks][%]' | |
@sort_order VARCHAR(500) = '[start_time] ASC' | |
@format_output TINYINT = 1 | |
@destination_table VARCHAR(4000) = '' | |
@return_schema BIT = 0 | |
@schema VARCHAR(MAX) = NULL OUTPUT | |
@help BIT = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment