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
@@ -8226,7 +8250,7 @@ IF @ProductVersionMajor >= 10
8226
8250
'No Failsafe Operator Configured'AS Finding ,
8227
8251
'https://www.brentozar.com/go/failsafe'ASURL ,
8228
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
8229
-
FROM@AlertInfo
8253
+
FROM#AlertInfo
8230
8254
WHERE FailSafeOperator ISNULL;
8231
8255
END;
8232
8256
@@ -10033,6 +10057,11 @@ IF @ProductVersionMajor >= 10 AND NOT EXISTS ( SELECT 1
10033
10057
EXEC sp_executesql N'DROP TABLE #InvalidLogins;';
10034
10058
END;
10035
10059
10060
+
IFOBJECT_ID('tempdb..#AlertInfo') ISNOTNULL
10061
+
BEGIN
10062
+
EXEC sp_executesql N'DROP TABLE #AlertInfo;';
10063
+
END;
10064
+
10036
10065
/*
10037
10066
Reset the Nmumeric_RoundAbort session state back to enabled if it was disabled earlier.
0 commit comments