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

Dev #427

Merged
merged 3 commits into from
May 16, 2024
Merged

Dev #427

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
12 changes: 5 additions & 7 deletions sp_QuickieStore/sp_QuickieStore.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2092,7 +2092,7 @@ like the wait stats DMV, and tempdb spills columns
IF
(
@product_version > 13
OR @azure = 1
OR @engine IN (5, 8)
)
BEGIN
SELECT
Expand Down Expand Up @@ -2301,12 +2301,10 @@ OPTION(RECOMPILE);' + @nc10;

IF @query_store_waits_enabled = 0
BEGIN
RAISERROR('Query Store wait stats are not enabled for database %s', 10, 1, @database_name_quoted) WITH NOWAIT;

IF @get_all_databases = 0
BEGIN
RETURN;
END;
IF @debug = 1
BEGIN
RAISERROR('Query Store wait stats are not enabled for database %s', 10, 1, @database_name_quoted) WITH NOWAIT;
END
END;
END; /*End wait stats checks*/

Expand Down