Last active
July 29, 2019 08:39
-
-
Save TheRockStarDBA/9ef597da7d5b895e4bfc to your computer and use it in GitHub Desktop.
sp_whoisactive - from Adam Machanic
This file contains hidden or 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
--- download it from http://sqlblog.com/files/folders/release/tags/who+is+active/default.aspx | |
EXEC sp_WhoIsActive | |
@filter = '', | |
@filter_type = 'session', | |
@not_filter = '', | |
@not_filter_type = 'session', | |
@show_own_spid = 0, | |
@show_system_spids = 0, | |
@show_sleeping_spids = 1, | |
@get_full_inner_text = 1, | |
@get_plans = 1, | |
@get_outer_command = 1, | |
@get_transaction_info = 0, | |
@get_task_info = 1, | |
@get_locks = 0, | |
@get_avg_time = 0, | |
@get_additional_info = 0, | |
@find_block_leaders = 1, | |
@delta_interval = 0, | |
@output_column_list = '[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 = '[start_time] ASC', | |
@format_output = 1, | |
@destination_table = '', | |
@return_schema = 0, | |
@schema = NULL, | |
@help = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
EXEC sp_WhoIsActive @get_transaction_info = 1, @get_outer_command = 1, @get_plans = 1