Skip to content

Commit

Permalink
Merge pull request #3375 from BrentOzarULTD/dev
Browse files Browse the repository at this point in the history
2023-10-10 Release
  • Loading branch information
BrentOzar authored Oct 10, 2023
2 parents 49d64cb + 4bb747a commit 215813f
Show file tree
Hide file tree
Showing 19 changed files with 2,477 additions and 1,633 deletions.
1,071 changes: 658 additions & 413 deletions Install-All-Scripts.sql

Large diffs are not rendered by default.

982 changes: 579 additions & 403 deletions Install-Core-Blitz-No-Query-Store.sql

Large diffs are not rendered by default.

1,061 changes: 653 additions & 408 deletions Install-Core-Blitz-With-Query-Store.sql

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ Advanced tips:

In addition to the [parameters common to many of the stored procedures](#parameters-common-to-many-of-the-stored-procedures), here are the ones specific to sp_Blitz:

* @Debug default 0. When 1, we print out messages of what we're doing. When 2, we print the dynamic queries as well

[*Back to top*](#header1)

#### Writing sp_Blitz Output to a Table
Expand Down
1 change: 1 addition & 0 deletions SqlServerVersions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ DELETE FROM dbo.SqlServerVersions;
INSERT INTO dbo.SqlServerVersions
(MajorVersionNumber, MinorVersionNumber, Branch, [Url], ReleaseDate, MainstreamSupportEndDate, ExtendedSupportEndDate, MajorVersionName, MinorVersionName)
VALUES
(16, 4075, 'CU8', 'https://support.microsoft.com/en-us/help/5029666', '2023-09-14', '2028-01-11', '2033-01-11', 'SQL Server 2022', 'Cumulative Update 8'),
(16, 4065, 'CU7', 'https://support.microsoft.com/en-us/help/5028743', '2023-08-10', '2028-01-11', '2033-01-11', 'SQL Server 2022', 'Cumulative Update 7'),
(16, 4055, 'CU6', 'https://support.microsoft.com/en-us/help/5027505', '2023-07-13', '2028-01-11', '2033-01-11', 'SQL Server 2022', 'Cumulative Update 6'),
(16, 4045, 'CU5', 'https://support.microsoft.com/en-us/help/5026806', '2023-06-15', '2028-01-11', '2033-01-11', 'SQL Server 2022', 'Cumulative Update 5'),
Expand Down
2 changes: 1 addition & 1 deletion sp_AllNightLog.sql
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ SET STATISTICS XML OFF;
BEGIN;


SELECT @Version = '8.16', @VersionDate = '20230820';
SELECT @Version = '8.17', @VersionDate = '20231010';

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 @@ -38,7 +38,7 @@ SET STATISTICS XML OFF;

BEGIN;

SELECT @Version = '8.16', @VersionDate = '20230820';
SELECT @Version = '8.17', @VersionDate = '20231010';

IF(@VersionCheckMode = 1)
BEGIN
Expand Down
Loading

0 comments on commit 215813f

Please sign in to comment.