Skip to content

Commit 032d548

Browse files
committed
#440 updating version dates and numbers
For the September release, closes #440.
1 parent 472f588 commit 032d548

File tree

4 files changed

+17
-132
lines changed

4 files changed

+17
-132
lines changed

sp_Blitz.sql

Lines changed: 5 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ALTER PROCEDURE [dbo].[sp_Blitz]
2929
AS
3030
SET NOCOUNT ON;
3131
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
32-
SET @VersionDate = '20160715'
32+
SET @VersionDate = '20160903'
3333

3434
IF @Help = 1 PRINT '
3535
/*
@@ -55,27 +55,8 @@ AS
5555
Unknown limitations of this version:
5656
- None. (If we knew them, they would be known. Duh.)
5757
58-
Changes in v53.1 - 2016/07/15
59-
- Warn about 2016 Query Store cleanup bug in Standard, Evaluation, Express:
60-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/352
61-
- Updating list of supported SQL Server versions:
62-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/344
63-
- Fixing bug in wait stats percentages:
64-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/324
65-
- For the full list of improvements and fixes in this version, see:
66-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/milestone/3?closed=1
67-
68-
69-
Changes in v53 - 2016/06/26
70-
- BREAKING CHANGE: Standardized input & output parameters to be
71-
consistent across the entire First Responder Kit. This also means the old
72-
old output parameter @Version is no more, because we are switching to
73-
semantic versioning.
74-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/284
75-
- BREAKING CHANGE: The CheckDate field datatype is now DATETIMEOFFSET. This
76-
makes it easier to combine results from multiple servers into one table even
77-
when servers are in different data centers, different time zones. More info:
78-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/288
58+
Changes - for the full list of improvements and fixes in this version, see:
59+
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/milestone/4?closed=1
7960
8061
8162
Parameter explanations:
@@ -3033,7 +3014,7 @@ AS
30333014
0 AS Priority ,
30343015
'Outdated sp_Blitz' AS FindingsGroup ,
30353016
'sp_Blitz is Over 6 Months Old' AS Finding ,
3036-
'http://www.BrentOzar.com/blitz/' AS URL ,
3017+
'http://FirstResponderKit.org/' AS URL ,
30373018
'Some things get better with age, like fine wine and your T-SQL. However, sp_Blitz is not one of those things - time to go download the current one.' AS Details
30383019
END
30393020

@@ -3160,7 +3141,7 @@ IF @ProductVersionMajor >= 10 AND @ProductVersionMinor >= 50
31603141
[sys].[dm_server_services]
31613142
WHERE [status_desc] <> 'Running'
31623143
AND [servicename] LIKE 'SQL Server Agent%'
3163-
AND SERVERPROPERTY('Edition') NOT LIKE '%xpress%'
3144+
AND CAST(SERVERPROPERTY('Edition') AS VARCHAR(1000)) NOT LIKE '%xpress%'
31643145

31653146
END;
31663147
END;

sp_BlitzCache.sql

Lines changed: 3 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -196,46 +196,9 @@ Known limitations of this version:
196196
Unknown limitations of this version:
197197
- May or may not be vulnerable to the wick effect.
198198
199-
Changes in v3.1 - 2016/07/15:
200-
- Show cost for stored procedures:
201-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/339
202-
- Warn about trace flags added at the query level, and global trace flags:
203-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/361
204-
- Add warnings about Remote Queries:
205-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/315
206-
- Do not show Forced Plans warning if the real cause is forced parameterization:
207-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/343
208-
- Fix divide-by-zero error if Cost Threshold for Parallelism is 0:
209-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/358
210-
- Fix warning for unparameterized query:
211-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/334
212-
213-
Changes in v3.0 - 2016/06/26:
214-
- BREAKING CHANGE: Standardized input & output parameters to be
215-
consistent across the entire First Responder Kit. This also means the old
216-
old output parameter @Version is no more, because we are switching to
217-
semantic versioning.
218-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/284
219-
- BREAKING CHANGE: The output table now adds a CheckDate field with a data
220-
type of DATETIMEOFFSET, and removes SampleTime. More info:
221-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/288
222-
- Summary output now moved to the bottom instead of the top.
223-
- Erik Darling added columns to @ExpertMode = 1 results ~ONLY~
224-
Will show up when you use an Output Table
225-
Will not show up in Excel exports
226-
-Query Hash More Info, and SQL Handle More Info give you
227-
sp_BlitzIndex style queries to get more information about specific queries
228-
-Remove Plan Handle From Cache, and Remove SQL Handle From Cache give you
229-
DBCC FREEPROCCACHE statements to remove items from Plan Cache
230-
-FIX: @IgnoreQueryHashes was not working. Should be working now.
231-
- Fixed ##bou_BlitzCacheResults not cleaned out after each pass. More info:
232-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/303
233-
- Fixed ##bou_BlitzCacheResults not filtered by session id. More info:
234-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/305
235-
- Erik Darling removed tempdb spills and expensive sorts from warnings.
236-
Neither one works properly with cached plans.
237-
Cleaned up documentation
238-
Fixed bug related to CTFP being set to 0
199+
Changes - for the full list of improvements and fixes in this version, see:
200+
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/milestone/4?closed=1
201+
239202
240203
241204
MIT License

sp_BlitzFirst.sql

Lines changed: 4 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ AS
2828
BEGIN
2929
SET NOCOUNT ON;
3030
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
31-
SET @VersionDate = '20160715'
31+
SET @VersionDate = '20160903'
3232

3333
IF @Help = 1 PRINT '
3434
sp_BlitzFirst from http://FirstResponderKit.org
@@ -53,31 +53,9 @@ Known limitations of this version:
5353
Unknown limitations of this version:
5454
- None. Like Zombo.com, the only limit is yourself.
5555
56-
Changes in v25 - 2016/07/15
57-
- Add new memory grants columns to 2012-2016 live queries output:
58-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/362
59-
- Add SQL login to live queries output:
60-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/354
61-
- Filter Perfmon counter display to skip counters with zeroes. Still logged to table though:
62-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/356
63-
64-
Changes in v24 - 2016/06/26
65-
- Renamed from sp_AskBrent.
66-
- BREAKING CHANGE: Standardized input & output parameters to be
67-
consistent across the entire First Responder Kit. This also means the old
68-
old output parameter @Version is no more, because we are switching to
69-
semantic versioning. More info:
70-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/284
71-
- BREAKING CHANGE: The CheckDate field datatype is now DATETIMEOFFSET. This
72-
makes it easier to combine results from multiple servers into one table even
73-
when servers are in different data centers, different time zones. More info:
74-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/288
75-
- Added BROKER_TRANSMITTER to list of ignorable wait types. More info:
76-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/268
77-
- Also ignore REDO_THREAD_PENDING_WORK, UCS_SESSION_REGISTRATION. More info:
78-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/174
79-
- Only show what queries are running now if @ExpertMode = 1. More info:
80-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/266
56+
Changes - for the full list of improvements and fixes in this version, see:
57+
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/milestone/4?closed=1
58+
8159
8260
8361
MIT License

sp_BlitzIndex.sql

Lines changed: 5 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ AS
3434
SET NOCOUNT ON;
3535
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
3636
DECLARE @Version VARCHAR(30);
37-
SET @Version = '4.1';
38-
SET @VersionDate = '20160715';
37+
SET @Version = '4.2';
38+
SET @VersionDate = '20160903';
3939
IF @Help = 1 PRINT '
4040
/*
4141
sp_BlitzIndex from http://FirstResponderKit.org
@@ -66,46 +66,9 @@ Known limitations of this version:
6666
Unknown limitations of this version:
6767
- We knew them once, but we forgot.
6868
69-
Changes in v4.1 - 2016/07/15:
70-
- Compression information in @Mode = 2:
71-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/18
72-
- Use recently-modified check to improve indexes-not-in-use recommendations:
73-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/220
74-
- Alphabetical sort for @GetAllDatabases = 1, @Mode = 2 output:
75-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/351
76-
- Remove per-day cost filter for missing indexes in @Mode = 4:
77-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/338
78-
- Missing index benefit is now labeled per-day to make it more obvious:
79-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/330
80-
81-
Changes in v4.0 - 2016/06/26:
82-
- BREAKING CHANGE: Standardized input & output parameters to be
83-
consistent across the entire First Responder Kit. This also means the old
84-
old output parameter @Version is no more, because we are switching to
85-
semantic versioning.
86-
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/issues/284
87-
- Bug fixes and improvements
88-
- Erik Darling:
89-
-Changed index_sanity_id to be NULLable in #IndexPartitionSanity
90-
-Changed version check to only ever use LEFT JOIN query to get partition information.
91-
This was taking upwards of 6 minutes with 15k partitions.
92-
93-
Changes in v3.0 - 2016/03/20:
94-
- Prioritized results
95-
- Moved URL to near the end of columns
96-
- Added 100k/day minimum benefit to high-value missing index recs
97-
- Expanded avg query cost on missing indexes to 4 decimal places
98-
- Formatted number of uses on missing indexes to use commas (money format)
99-
- Changed benefit formula to divide benefit number by uptime
100-
- When using either @Mode = 0 or @GetAllDatabases = 1, results are limited to:
101-
* Duplicate indexes where both are larger than @ThresholdMB
102-
* Blocking with a high threshold ( TBD)
103-
* Unread indexes larger than @ThresholdMB
104-
* Heaps larger than @ThresholdMB with updates or deletes
105-
* Identities about to run out of room
106-
* The top 20 missing indexes
107-
* Abnormal psychology stuff (as an FYI for query / index tuning)
108-
- Running @GetAllDatabases requires an override parameter (@BringThePain = 1) to run against 50+ databases
69+
Changes - for the full list of improvements and fixes in this version, see:
70+
https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/milestone/4?closed=1
71+
10972
11073
MIT License
11174

0 commit comments

Comments
 (0)