Skip to content

Commit 168eee3

Browse files
committed
One. Last. Thing.
Fixes Tiny typo in Blitz.
1 parent af987bb commit 168eee3

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

Install-All-Scripts.sql

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7076,7 +7076,12 @@ IF @ProductVersionMajor >= 10
70767076
'Hey big spender, you have ' + CAST(COUNT_BIG(*) AS VARCHAR(30)) + ' Extended Events sessions running. You sure you meant to do that?' AS Details
70777077
FROM sys.dm_xe_sessions
70787078
WHERE [name] NOT IN
7079-
( 'AlwaysOn_health', 'system_health', 'telemetry_xevents', 'sp_server_diagnostics', 'hkenginexesession' )
7079+
( 'AlwaysOn_health',
7080+
'system_health',
7081+
'telemetry_xevents',
7082+
'sp_server_diagnostics',
7083+
'sp_server_diagnostics session',
7084+
'hkenginexesession' )
70807085
AND name NOT LIKE '%$A%'
70817086
HAVING COUNT_BIG(*) >= 2;
70827087
END;

Install-Core-Blitz-No-Query-Store.sql

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4279,7 +4279,12 @@ IF @ProductVersionMajor >= 10
42794279
'Hey big spender, you have ' + CAST(COUNT_BIG(*) AS VARCHAR(30)) + ' Extended Events sessions running. You sure you meant to do that?' AS Details
42804280
FROM sys.dm_xe_sessions
42814281
WHERE [name] NOT IN
4282-
( 'AlwaysOn_health', 'system_health', 'telemetry_xevents', 'sp_server_diagnostics', 'hkenginexesession' )
4282+
( 'AlwaysOn_health',
4283+
'system_health',
4284+
'telemetry_xevents',
4285+
'sp_server_diagnostics',
4286+
'sp_server_diagnostics session',
4287+
'hkenginexesession' )
42834288
AND name NOT LIKE '%$A%'
42844289
HAVING COUNT_BIG(*) >= 2;
42854290
END;

Install-Core-Blitz-With-Query-Store.sql

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4279,7 +4279,12 @@ IF @ProductVersionMajor >= 10
42794279
'Hey big spender, you have ' + CAST(COUNT_BIG(*) AS VARCHAR(30)) + ' Extended Events sessions running. You sure you meant to do that?' AS Details
42804280
FROM sys.dm_xe_sessions
42814281
WHERE [name] NOT IN
4282-
( 'AlwaysOn_health', 'system_health', 'telemetry_xevents', 'sp_server_diagnostics', 'hkenginexesession' )
4282+
( 'AlwaysOn_health',
4283+
'system_health',
4284+
'telemetry_xevents',
4285+
'sp_server_diagnostics',
4286+
'sp_server_diagnostics session',
4287+
'hkenginexesession' )
42834288
AND name NOT LIKE '%$A%'
42844289
HAVING COUNT_BIG(*) >= 2;
42854290
END;

0 commit comments

Comments
 (0)