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
@@ -8209,7 +8233,7 @@ IF @ProductVersionMajor >= 10
8209
8233
'No Failsafe Operator Configured'AS Finding ,
8210
8234
'https://www.brentozar.com/go/failsafe'ASURL ,
8211
8235
( '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
8212
-
FROM@AlertInfo
8236
+
FROM#AlertInfo
8213
8237
WHERE FailSafeOperator ISNULL;
8214
8238
END;
8215
8239
@@ -9957,6 +9981,11 @@ IF @ProductVersionMajor >= 10 AND NOT EXISTS ( SELECT 1
9957
9981
EXEC sp_executesql N'DROP TABLE #InvalidLogins;';
9958
9982
END;
9959
9983
9984
+
IFOBJECT_ID('tempdb..#AlertInfo') ISNOTNULL
9985
+
BEGIN
9986
+
EXEC sp_executesql N'DROP TABLE #AlertInfo;';
9987
+
END;
9988
+
9960
9989
/*
9961
9990
Reset the Nmumeric_RoundAbort session state back to enabled if it was disabled earlier.
0 commit comments