Skip to content

Commit 7403835

Browse files
authored
Merge pull request #3274 from MichelZ/dev
Update unsupported SQL Versions
2 parents 0507a55 + e279468 commit 7403835

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sp_Blitz.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3881,7 +3881,7 @@ AS
38813881
(@ProductVersionMajor = 14 AND @ProductVersionMinor < 1000) OR
38823882
(@ProductVersionMajor = 13 AND @ProductVersionMinor < 6300) OR
38833883
(@ProductVersionMajor = 12 AND @ProductVersionMinor < 6024) OR
3884-
(@ProductVersionMajor = 11 AND @ProductVersionMinor < 7001) OR
3884+
(@ProductVersionMajor = 11 /*AND @ProductVersionMinor < 7001)*/ OR
38853885
(@ProductVersionMajor = 10.5 /*AND @ProductVersionMinor < 6000*/) OR
38863886
(@ProductVersionMajor = 10 /*AND @ProductVersionMinor < 6000*/) OR
38873887
(@ProductVersionMajor = 9 /*AND @ProductVersionMinor <= 5000*/)
@@ -3892,7 +3892,7 @@ AS
38923892
INSERT INTO #BlitzResults(CheckID, Priority, FindingsGroup, Finding, URL, Details)
38933893
VALUES(128, 20, 'Reliability', 'Unsupported Build of SQL Server', 'https://www.brentozar.com/go/unsupported',
38943894
'Version ' + CAST(@ProductVersionMajor AS VARCHAR(100)) +
3895-
CASE WHEN @ProductVersionMajor >= 11 THEN
3895+
CASE WHEN @ProductVersionMajor >= 12 THEN
38963896
'.' + CAST(@ProductVersionMinor AS VARCHAR(100)) + ' is no longer supported by Microsoft. You need to apply a service pack.'
38973897
ELSE ' is no longer supported by Microsoft. You should be making plans to upgrade to a modern version of SQL Server.' END);
38983898
END;

0 commit comments

Comments
 (0)