You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ANDSERVERPROPERTY('EngineEdition') <>8; /* Hekaton is always enabled in Managed Instances per https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/1919 */
@@ -8222,7 +8250,7 @@ IF @ProductVersionMajor >= 10
8222
8250
'No Failsafe Operator Configured'AS Finding ,
8223
8251
'https://www.brentozar.com/go/failsafe'ASURL ,
8224
8252
( 'No failsafe operator is configured on this server. This is a good idea just in-case there are issues with the [msdb] database that prevents alerting.' ) AS Details
8225
-
FROM@AlertInfo
8253
+
FROM#AlertInfo
8226
8254
WHERE FailSafeOperator ISNULL;
8227
8255
END;
8228
8256
@@ -10029,6 +10057,11 @@ IF @ProductVersionMajor >= 10 AND NOT EXISTS ( SELECT 1
10029
10057
EXEC sp_executesql N'DROP TABLE #InvalidLogins;';
10030
10058
END;
10031
10059
10060
+
IFOBJECT_ID('tempdb..#AlertInfo') ISNOTNULL
10061
+
BEGIN
10062
+
EXEC sp_executesql N'DROP TABLE #AlertInfo;';
10063
+
END;
10064
+
10032
10065
/*
10033
10066
Reset the Nmumeric_RoundAbort session state back to enabled if it was disabled earlier.
0 commit comments