@@ -29,7 +29,7 @@ ALTER PROCEDURE [dbo].[sp_Blitz]
2929AS
3030 SET NOCOUNT ON ;
3131 SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED ;
32- SET @VersionDate = ' 20160626 '
32+ SET @VersionDate = ' 20160715 '
3333
3434 IF @Help = 1 PRINT '
3535 /*
5353 Unknown limitations of this version:
5454 - None. (If we knew them, they would be known. Duh.)
5555
56+ Changes in v53.1 - 2016/07/15
57+ - Warn about 2016 Query Store cleanup bug in Standard, Evaluation, Express:
58+ https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/352
59+ - Updating list of supported SQL Server versions:
60+ https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/344
61+ - Fixing bug in wait stats percentages:
62+ https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/324
63+ - For the full list of improvements and fixes in this version, see:
64+ https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/milestone/3?closed=1
65+
66+
5667 Changes in v53 - 2016/06/26
5768 - BREAKING CHANGE: Standardized input & output parameters to be
5869 consistent across the entire First Responder Kit. This also means the old
6475 when servers are in different data centers, different time zones. More info:
6576 https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/288
6677
67- Changes in v52 - 2016/06/02
68- - SQL Server 2016 compatibility. 2016 RTM ships with some questionable
69- database-level options like heaps in DWDiagnostics, target recovery
70- time changed in the DW* databases, and l_certSignSmDetach as a new
71- default sysadmin login, so ignoring those.
72- - If databases have an old compatibility level that does not support CTEs
73- then @CheckUserDatabaseObjects is set to 0 to avoid problems with
74- current checks. Get on the current compat level, Grandpa.
75-
76- Changes in v51 - 2016/05/18
77- - Thomas Rushton added a check for dangerous third-party modules. (179)
78- More info: https://support.microsoft.com/en-us/kb/2033238
79- - New check for snapshot backups possibly freezing IO. Looking for 50GB+
80- backups that complete in under 60 seconds. (178)
81- - If there are 50+ user databases, you have to turn on @BringThePain = 1
82- in order to do @CheckUserDatabaseObjects = 1. (Speeds up sp_Blitz on
83- servers with hundreds or thousands of databases.)
84- - Reprioritized a bunch of checks, like moving security warnings down to
85- priority 230, so that you can use @IgnorePrioritiesAbove = 50 better.
86- - Bug fixes.
87-
88- Changes in v50 - 2016/04/08
89- - Fixed bug in check ID 2 that would fail on a database with multiple log
90- files, that also has not had a backup in two weeks.
91-
92- Changes in v49 - 2016/04/06
93- - Amazon RDS compatibility, but to do that, we have to skip a bunch of checks.
94- RDS does not allow you to query MSDB, configure TempDB, make
95- server-level sp_configure settings, etc.
96-
97- For prior changes, see: http://www.BrentOzar.com/blitz/changelog/
98-
9978
10079 Parameter explanations:
10180
0 commit comments