Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#3348 added explanation for @debug in help #3351

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ Advanced tips:

In addition to the [parameters common to many of the stored procedures](#parameters-common-to-many-of-the-stored-procedures), here are the ones specific to sp_Blitz:

* @Debug default 0. When 1, we print out messages of what we're doing. When 2, we print the dynamic queries as well

[*Back to top*](#header1)

#### Writing sp_Blitz Output to a Table
Expand Down
1 change: 1 addition & 0 deletions sp_Blitz.sql
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ AS
@OutputType ''TABLE''=table | ''COUNT''=row with number found | ''MARKDOWN''=bulleted list (including server info, excluding security findings) | ''SCHEMA''=version and field list | ''XML'' =table output as XML | ''NONE'' = none
@IgnorePrioritiesBelow 50=ignore priorities below 50
@IgnorePrioritiesAbove 50=ignore priorities above 50
@Debug 0=silent (Default) | 1=messages per step | 2=outputs dynamic queries
For the rest of the parameters, see https://www.BrentOzar.com/blitz/documentation for details.

MIT License
Expand Down