Skip to content

Commit 6e3850b

Browse files
committed
#2301 2020-02 release prep
Updating dates, build scripts. Closes #2301.
1 parent 1f5b035 commit 6e3850b

17 files changed

+502
-198
lines changed

Install-All-Scripts.sql

Lines changed: 172 additions & 70 deletions
Large diffs are not rendered by default.

Install-Core-Blitz-No-Query-Store.sql

Lines changed: 154 additions & 54 deletions
Large diffs are not rendered by default.

Install-Core-Blitz-With-Query-Store.sql

Lines changed: 155 additions & 55 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@ To install, [download the latest release ZIP](https://github.com/BrentOzarULTD/S
4040

4141
The First Responder Kit runs on:
4242

43-
* SQL Server 2008, 2008R2, 2012, 2014, 2016, 2017, 2019 on Windows - yes, fully supported
44-
* SQL Server 2017, 2019 on Linux - yes, fully supported except sp_AllNightLog and sp_DatabaseRestore, which require xp_cmdshell, which Microsoft doesn't provide on Linux
45-
* SQL Server 2000, 2005 - not supported by Microsoft anymore, so we don't either
46-
* Amazon RDS SQL Server - fully supported
47-
* Azure SQL DB - It's a dice roll. Microsoft changes DMV contents in here without warning, so no guarantees.
43+
* SQL Server 2012, 2014, 2016, 2017, 2019 on Windows - fully supported.
44+
* SQL Server 2017, 2019 on Linux - yes, fully supported except sp_AllNightLog and sp_DatabaseRestore, which require xp_cmdshell, which Microsoft doesn't provide on Linux.
45+
* SQL Server 2008, 200R2 - not officially supported since it's out of Microsoft support, but we try not to make changes that would break functionality here.
46+
* SQL Server 2000, 2005 - not supported at all.
47+
* Amazon RDS SQL Server - fully supported.
48+
* Azure SQL DB - not supported. Some of the procedures work, but some don't, and Microsoft has a tendency to change DMVs in Azure without warning, so we don't put any effort into supporting it. If it works, great! If not, any changes to make it work would be on you. [See the contributing.md file](CONTRIBUTING.md) for how to do that.
4849

4950

5051
## How to Get Support
@@ -207,6 +208,7 @@ You can log sp_BlitzFirst performance data to tables and then analyze the result
207208
* @OutputTableNamePerfmonStats = 'BlitzFirst_PerfmonStats'
208209
* @OutputTableNameWaitStats = 'BlitzFirst_WaitStats'
209210
* @OutputTableNameBlitzCache = 'BlitzCache'
211+
* @OutputTableNameBlitzWho = 'BlitzWho'
210212

211213
All of the above OutputTableName parameters are optional: if you don't want to collect all of the stats, you don't have to. Keep in mind that the sp_BlitzCache results will get large, fast, because each execution plan is megabytes in size.
212214

@@ -297,7 +299,7 @@ Parameters you can use:
297299
[*Back to top*](#header1)
298300

299301

300-
## sp_BlitzQueryStore: Query Store Sale
302+
## sp_BlitzQueryStore: How Has a Query Plan Changed Over Time
301303

302304
Analyzes data in Query Store schema (2016+ only) in many similar ways to what sp_BlitzCache does for the plan cache.
303305

sp_AllNightLog.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SET NOCOUNT ON;
3030
BEGIN;
3131

3232

33-
SELECT @Version = '3.92', @VersionDate = '20200123';
33+
SELECT @Version = '3.93', @VersionDate = '20200217';
3434

3535
IF(@VersionCheckMode = 1)
3636
BEGIN

sp_AllNightLog_Setup.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ SET NOCOUNT ON;
3636

3737
BEGIN;
3838

39-
SELECT @Version = '3.92', @VersionDate = '20200123';
39+
SELECT @Version = '3.93', @VersionDate = '20200217';
4040

4141
IF(@VersionCheckMode = 1)
4242
BEGIN

sp_Blitz.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ AS
3737
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
3838

3939

40-
SELECT @Version = '7.92', @VersionDate = '20200123';
40+
SELECT @Version = '7.93', @VersionDate = '20200217';
4141
SET @OutputType = UPPER(@OutputType);
4242

4343
IF(@VersionCheckMode = 1)

sp_BlitzBackups.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ AS
2323
SET NOCOUNT ON;
2424
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
2525

26-
SELECT @Version = '3.92', @VersionDate = '20200123';
26+
SELECT @Version = '3.93', @VersionDate = '20200217';
2727

2828
IF(@VersionCheckMode = 1)
2929
BEGIN

sp_BlitzCache.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ BEGIN
276276
SET NOCOUNT ON;
277277
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
278278

279-
SELECT @Version = '7.92', @VersionDate = '20200123';
279+
SELECT @Version = '7.93', @VersionDate = '20200217';
280280

281281

282282
IF(@VersionCheckMode = 1)

sp_BlitzFirst.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ BEGIN
4444
SET NOCOUNT ON;
4545
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
4646

47-
SELECT @Version = '7.92', @VersionDate = '20200123';
47+
SELECT @Version = '7.93', @VersionDate = '20200217';
4848

4949
IF(@VersionCheckMode = 1)
5050
BEGIN

0 commit comments

Comments
 (0)