Skip to content

Commit

Permalink
Merge pull request #2715 from BrentOzarULTD/2714_2020_12_release
Browse files Browse the repository at this point in the history
#2714 2020-12 release
  • Loading branch information
BrentOzar authored Dec 11, 2020
2 parents 04bbf9b + 956158f commit 4f22016
Show file tree
Hide file tree
Showing 16 changed files with 331 additions and 189 deletions.
248 changes: 169 additions & 79 deletions Install-All-Scripts.sql

Large diffs are not rendered by default.

122 changes: 74 additions & 48 deletions Install-Core-Blitz-No-Query-Store.sql

Large diffs are not rendered by default.

124 changes: 75 additions & 49 deletions Install-Core-Blitz-With-Query-Store.sql

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sp_AllNightLog.sql
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SET NOCOUNT ON;
BEGIN;


SELECT @Version = '3.999', @VersionDate = '20201114';
SELECT @Version = '3.9999', @VersionDate = '20201211';

IF(@VersionCheckMode = 1)
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion sp_AllNightLog_Setup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ SET NOCOUNT ON;

BEGIN;

SELECT @Version = '3.999', @VersionDate = '20201114';
SELECT @Version = '3.9999', @VersionDate = '20201211';

IF(@VersionCheckMode = 1)
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion sp_Blitz.sql
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ AS
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;


SELECT @Version = '7.9999', @VersionDate = '20201114';
SELECT @Version = '7.99999', @VersionDate = '20201211';
SET @OutputType = UPPER(@OutputType);

IF(@VersionCheckMode = 1)
Expand Down
2 changes: 1 addition & 1 deletion sp_BlitzBackups.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ AS
SET NOCOUNT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT @Version = '3.9999', @VersionDate = '20201114';
SELECT @Version = '3.99999', @VersionDate = '20201211';

IF(@VersionCheckMode = 1)
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion sp_BlitzCache.sql
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ BEGIN
SET NOCOUNT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT @Version = '7.9999', @VersionDate = '20201114';
SELECT @Version = '7.99999', @VersionDate = '20201211';


IF(@VersionCheckMode = 1)
Expand Down
2 changes: 1 addition & 1 deletion sp_BlitzFirst.sql
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ BEGIN
SET NOCOUNT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT @Version = '7.9999', @VersionDate = '20201114';
SELECT @Version = '7.99999', @VersionDate = '20201211';

IF(@VersionCheckMode = 1)
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion sp_BlitzInMemoryOLTP.sql
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
*/
AS
DECLARE @ScriptVersion VARCHAR(30);
SELECT @ScriptVersion = '1.8', @VersionDate = '20201114';
SELECT @ScriptVersion = '1.8', @VersionDate = '20201211';

IF(@VersionCheckMode = 1)
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion sp_BlitzIndex.sql
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ AS
SET NOCOUNT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT @Version = '7.9999', @VersionDate = '20201114';
SELECT @Version = '7.99999', @VersionDate = '20201211';
SET @OutputType = UPPER(@OutputType);

IF(@VersionCheckMode = 1)
Expand Down
2 changes: 1 addition & 1 deletion sp_BlitzLock.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ BEGIN
SET NOCOUNT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT @Version = '2.9999', @VersionDate = '20201114';
SELECT @Version = '2.99999', @VersionDate = '20201211';


IF(@VersionCheckMode = 1)
Expand Down
2 changes: 1 addition & 1 deletion sp_BlitzQueryStore.sql
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ BEGIN /*First BEGIN*/
SET NOCOUNT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT @Version = '3.9999', @VersionDate = '20201114';
SELECT @Version = '3.99999', @VersionDate = '20201211';
IF(@VersionCheckMode = 1)
BEGIN
RETURN;
Expand Down
2 changes: 1 addition & 1 deletion sp_BlitzWho.sql
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ BEGIN
SET NOCOUNT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;

SELECT @Version = '7.9999', @VersionDate = '20201114';
SELECT @Version = '7.99999', @VersionDate = '20201211';

IF(@VersionCheckMode = 1)
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion sp_DatabaseRestore.sql
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ SET NOCOUNT ON;

/*Versioning details*/

SELECT @Version = '7.9999', @VersionDate = '20201114';
SELECT @Version = '7.99999', @VersionDate = '20201211';

IF(@VersionCheckMode = 1)
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion sp_ineachdb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ AS
BEGIN
SET NOCOUNT ON;

SELECT @Version = '2.9999', @VersionDate = '20201114';
SELECT @Version = '2.99999', @VersionDate = '20201211';

IF(@VersionCheckMode = 1)
BEGIN
Expand Down

0 comments on commit 4f22016

Please sign in to comment.