Skip to content

Commit 5593847

Browse files
committed
First Release!
Setting dates, MIT licensing, removing Brent Ozar Unlimited branding.
1 parent 76eb2b8 commit 5593847

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

sp_Blitz.sql

Lines changed: 2 additions & 2 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 = '20160602'
32+
SET @VersionDate = '20160626'
3333

3434
IF @Help = 1 PRINT '
3535
/*
@@ -53,7 +53,7 @@ AS
5353
Unknown limitations of this version:
5454
- None. (If we knew them, they would be known. Duh.)
5555
56-
Changes in v53 - YYYY/MM/DD
56+
Changes in v53 - 2016/06/26
5757
- BREAKING CHANGE: Standardized input & output parameters to be
5858
consistent across the entire First Responder Kit. This also means the old
5959
old output parameter @Version is no more, because we are switching to

sp_BlitzCache.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Known limitations of this version:
188188
Unknown limitations of this version:
189189
- May or may not be vulnerable to the wick effect.
190190
191-
Changes in v3.0 - 2016/06/18:
191+
Changes in v3.0 - 2016/06/26:
192192
- BREAKING CHANGE: Standardized input & output parameters to be
193193
consistent across the entire First Responder Kit. This also means the old
194194
old output parameter @Version is no more, because we are switching to

sp_BlitzIndex.sql

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ SET NOCOUNT ON;
3434
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
3535
DECLARE @Version VARCHAR(30);
3636
SET @Version = '4.0';
37-
SET @VersionDate = '20160320';
37+
SET @VersionDate = '20160626';
3838
IF @Help = 1 PRINT '
3939
/*
4040
sp_BlitzIndex from http://FirstResponderKit.org
@@ -65,7 +65,7 @@ Known limitations of this version:
6565
Unknown limitations of this version:
6666
- We knew them once, but we forgot.
6767
68-
Changes in v4.0 - YYYY/MM/DD:
68+
Changes in v4.0 - 2016/06/26:
6969
- BREAKING CHANGE: Standardized input & output parameters to be
7070
consistent across the entire First Responder Kit. This also means the old
7171
old output parameter @Version is no more, because we are switching to
@@ -140,7 +140,7 @@ SELECT @SQLServerProductVersion = CAST(SERVERPROPERTY('ProductVersion') AS NVARC
140140
SELECT @SQLServerEdition =CAST(SERVERPROPERTY('EngineEdition') AS INT); /* We default to online index creates where EngineEdition=3*/
141141
SET @FilterMB=250;
142142

143-
RAISERROR(N'Starting run. sp_BlitzIndex(R) v3.0 - March 20, 2016', 0,1) WITH NOWAIT;
143+
RAISERROR(N'Starting run. sp_BlitzIndex(R) v4.0 - June 26, 2016', 0,1) WITH NOWAIT;
144144

145145
IF OBJECT_ID('tempdb..#IndexSanity') IS NOT NULL
146146
DROP TABLE #IndexSanity;
@@ -1427,10 +1427,10 @@ BEGIN
14271427
WHERE s.[object_id]=@ObjectID
14281428
UNION ALL
14291429
SELECT N'Database ' + QUOTENAME(@DatabaseName) + N' as of ' + convert(nvarchar(16),getdate(),121) +
1430-
N' (sp_BlitzIndex(R) v2.02 - Jan 30, 2014)' ,
1431-
N'From Brent Ozar Unlimited(R)' ,
1432-
N'http://www.BrentOzar.com/BlitzIndex' ,
1433-
N'Thanks from the Brent Ozar Unlimited(R) team. We hope you found this tool useful, and if you need help relieving your SQL Server pains, email us at [email protected].',
1430+
N' (sp_BlitzIndex(R) v4.0 - June 26, 2016)' ,
1431+
N'SQL Server First Responder Kit' ,
1432+
N'http://FirstResponderKit.org' ,
1433+
N'From Your Community Volunteers',
14341434
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
14351435
0 as display_order
14361436
)
@@ -2763,7 +2763,7 @@ BEGIN;
27632763
INSERT #BlitzIndexResults ( Priority, check_id, findings_group, finding, URL, details, index_definition,
27642764
index_usage_summary, index_size_summary )
27652765
VALUES ( -1, 0 ,
2766-
'Outdated sp_BlitzIndex', 'sp_BlitzIndex is Over 6 Months Old', 'http://www.BrentOzar.com/BlitzIndex/',
2766+
'Outdated sp_BlitzIndex', 'sp_BlitzIndex is Over 6 Months Old', 'http://FirstResponderKit.org/',
27672767
'Fine wine gets better with age, but this sp_BlitzIndex (TM) v' + @Version + ' as of ' + CAST(CONVERT(DATETIME, @VersionDate, 102) AS VARCHAR(100)) + ' is more like bad cheese. Time to get a new one.',
27682768
N'',N'',N''
27692769
);
@@ -2776,8 +2776,8 @@ BEGIN;
27762776
VALUES ( -1, 0 ,
27772777
'sp_BlitzIndex (TM) v' + @Version + ' as of ' + CAST(CONVERT(DATETIME, @VersionDate, 102) AS VARCHAR(100)),
27782778
CASE WHEN @GetAllDatabases = 1 THEN N'All Databases' ELSE N'Database ' + QUOTENAME(@DatabaseName) + N' as of ' + convert(nvarchar(16),getdate(),121) END,
2779-
N'From Brent Ozar Unlimited(R)' , N'http://www.BrentOzar.com/BlitzIndex' ,
2780-
N'Thanks from the Brent Ozar Unlimited(R) team. We hope you found this tool useful, and if you need help relieving your SQL Server pains, email us at [email protected].'
2779+
N'From Your Community Volunteers' , N'http://FirstResponderKit.org' ,
2780+
N''
27812781
, N'',N''
27822782
);
27832783
END
@@ -2788,16 +2788,16 @@ BEGIN;
27882788
VALUES ( -1, 0 ,
27892789
'sp_BlitzIndex (TM) v' + @Version + ' as of ' + CAST(CONVERT(DATETIME, @VersionDate, 102) AS VARCHAR(100)),
27902790
CASE WHEN @GetAllDatabases = 1 THEN N'All Databases' ELSE N'Database ' + QUOTENAME(@DatabaseName) + N' as of ' + convert(nvarchar(16),getdate(),121) END,
2791-
N'From Brent Ozar Unlimited(R)' , N'http://www.BrentOzar.com/BlitzIndex' ,
2792-
N'Thanks from the Brent Ozar Unlimited(R) team. We hope you found this tool useful, and if you need help relieving your SQL Server pains, email us at [email protected].'
2791+
N'From Your Community Volunteers' , N'http://FirstResponderKit.org' ,
2792+
N''
27932793
, N'',N''
27942794
);
27952795
INSERT #BlitzIndexResults ( Priority, check_id, findings_group, finding, URL, details, index_definition,
27962796
index_usage_summary, index_size_summary )
27972797
VALUES ( 1, 0 ,
27982798
'No Major Problems Found',
27992799
'Nice Work!',
2800-
'http://www.BrentOzar.com/BlitzIndex', 'Consider running with @Mode = 4 in individual databases (not all) for more detailed diagnostics.', 'The new default Mode 0 only looks for very serious index issues.', '', ''
2800+
'http://FirstResponderKit.org', 'Consider running with @Mode = 4 in individual databases (not all) for more detailed diagnostics.', 'The new default Mode 0 only looks for very serious index issues.', '', ''
28012801
);
28022802

28032803
END
@@ -2808,16 +2808,16 @@ BEGIN;
28082808
VALUES ( -1, 0 ,
28092809
'sp_BlitzIndex (TM) v' + @Version + ' as of ' + CAST(CONVERT(DATETIME, @VersionDate, 102) AS VARCHAR(100)),
28102810
CASE WHEN @GetAllDatabases = 1 THEN N'All Databases' ELSE N'Database ' + QUOTENAME(@DatabaseName) + N' as of ' + convert(nvarchar(16),getdate(),121) END,
2811-
N'From Brent Ozar Unlimited(R)' , N'http://www.BrentOzar.com/BlitzIndex' ,
2812-
N'Thanks from the Brent Ozar Unlimited(R) team. We hope you found this tool useful, and if you need help relieving your SQL Server pains, email us at [email protected].'
2811+
N'From Your Community Volunteers' , N'http://www.BrentOzar.com/BlitzIndex' ,
2812+
N''
28132813
, N'',N''
28142814
);
28152815
INSERT #BlitzIndexResults ( Priority, check_id, findings_group, finding, URL, details, index_definition,
28162816
index_usage_summary, index_size_summary )
28172817
VALUES ( 1, 0 ,
28182818
'No Problems Found',
28192819
'Nice job! Or more likely, you have a nearly empty database.',
2820-
'http://www.BrentOzar.com/BlitzIndex', 'Time to go read some blog posts.', '', '', ''
2820+
'http://FirstResponderKit.org', 'Time to go read some blog posts.', '', '', ''
28212821
);
28222822

28232823
END
@@ -2925,9 +2925,9 @@ BEGIN;
29252925
UNION ALL
29262926
SELECT N'Database ' + QUOTENAME(@DatabaseName) + N' as of ' + convert(nvarchar(16),getdate(),121) ,
29272927
N'sp_BlitzIndex (TM) v' + @Version + ' as of ' + CAST(CONVERT(DATETIME, @VersionDate, 102) AS VARCHAR(100)),
2928-
N'From Brent Ozar Unlimited(R)' ,
2929-
N'http://BrentOzar.com/BlitzIndex' ,
2930-
N'Thanks from the Brent Ozar Unlimited(R) team. We hope you found this tool useful, and if you need help relieving your SQL Server pains, email us at [email protected].',
2928+
N'From Your Community Volunteers' ,
2929+
N'http://FirstResponderKit.org' ,
2930+
N'',
29312931
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
29322932
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
29332933
NULL,0 as display_order
@@ -3034,10 +3034,10 @@ BEGIN;
30343034
UNION ALL
30353035
SELECT
30363036
N'sp_BlitzIndex (TM) v' + @Version + ' as of ' + CAST(CONVERT(DATETIME, @VersionDate, 102) AS VARCHAR(100)),
3037-
N'From Brent Ozar Unlimited(R)' ,
3038-
N'http://BrentOzar.com/BlitzIndex' ,
3037+
N'From Your Community Volunteers' ,
3038+
N'http://FirstResponderKit.org' ,
30393039
100000000000,
3040-
N'Thanks from the Brent Ozar Unlimited(R) team. We hope you found this tool useful, and if you need help relieving your SQL Server pains, email us at [email protected].',
3040+
N'',
30413041
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
30423042
NULL, 0 as display_order
30433043
ORDER BY [Display Order] ASC, [Magic Benefit Number] DESC

sp_BlitzTrace.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Known limitations of this version:
5959
Unknown limitations of this version:
6060
- Probably a lot. This is one of our lesser-tested scripts.
6161
62-
Changes in v1.0 - YYYY/MM/DD
62+
Changes in v1.0 - 2016/06/26
6363
- Switched to MIT licensing.
6464
- Added @Help parameter.
6565

0 commit comments

Comments
 (0)