Skip to content

Commit 656dae0

Browse files
committed
Updating install scripts w/2008 fix
For 2020-07-03 release.
1 parent 7c48a7f commit 656dae0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Install-All-Scripts.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20859,7 +20859,7 @@ BEGIN
2085920859
We start by creating #BlitzFirstResults. It's a temp table that will store
2086020860
the results from our checks. Throughout the rest of this stored procedure,
2086120861
we're running a series of checks looking for dangerous things inside the SQL
20862-
Server. When we find a problem, we insert rows into #BlitzResults. At the
20862+
Server. When we find a problem, we insert rows into the temp table. At the
2086320863
end, we return these results to the end user.
2086420864

2086520865
#BlitzFirstResults has a CheckID field, but there's no Check table. As we do
@@ -22384,7 +22384,7 @@ If one of them is a lead blocker, consider killing that query.'' AS HowToStopit,
2238422384
BEGIN
2238522385
/* Antiques Roadshow SQL 2008R2 - version */
2238622386
SET @StringToExecute = N'
22387-
INSERT INTO #BlitzResults (CheckID, Priority, FindingsGroup, Finding, Details, URL)
22387+
INSERT INTO #BlitzFirstResults (CheckID, Priority, FindingsGroup, Finding, Details, URL)
2238822388
SELECT 45 AS CheckID,
2238922389
50 AS Priority,
2239022390
''Performance'' AS FindingsGroup,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18048,7 +18048,7 @@ BEGIN
1804818048
We start by creating #BlitzFirstResults. It's a temp table that will store
1804918049
the results from our checks. Throughout the rest of this stored procedure,
1805018050
we're running a series of checks looking for dangerous things inside the SQL
18051-
Server. When we find a problem, we insert rows into #BlitzResults. At the
18051+
Server. When we find a problem, we insert rows into the temp table. At the
1805218052
end, we return these results to the end user.
1805318053

1805418054
#BlitzFirstResults has a CheckID field, but there's no Check table. As we do
@@ -19573,7 +19573,7 @@ If one of them is a lead blocker, consider killing that query.'' AS HowToStopit,
1957319573
BEGIN
1957419574
/* Antiques Roadshow SQL 2008R2 - version */
1957519575
SET @StringToExecute = N'
19576-
INSERT INTO #BlitzResults (CheckID, Priority, FindingsGroup, Finding, Details, URL)
19576+
INSERT INTO #BlitzFirstResults (CheckID, Priority, FindingsGroup, Finding, Details, URL)
1957719577
SELECT 45 AS CheckID,
1957819578
50 AS Priority,
1957919579
''Performance'' AS FindingsGroup,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18048,7 +18048,7 @@ BEGIN
1804818048
We start by creating #BlitzFirstResults. It's a temp table that will store
1804918049
the results from our checks. Throughout the rest of this stored procedure,
1805018050
we're running a series of checks looking for dangerous things inside the SQL
18051-
Server. When we find a problem, we insert rows into #BlitzResults. At the
18051+
Server. When we find a problem, we insert rows into the temp table. At the
1805218052
end, we return these results to the end user.
1805318053

1805418054
#BlitzFirstResults has a CheckID field, but there's no Check table. As we do
@@ -19573,7 +19573,7 @@ If one of them is a lead blocker, consider killing that query.'' AS HowToStopit,
1957319573
BEGIN
1957419574
/* Antiques Roadshow SQL 2008R2 - version */
1957519575
SET @StringToExecute = N'
19576-
INSERT INTO #BlitzResults (CheckID, Priority, FindingsGroup, Finding, Details, URL)
19576+
INSERT INTO #BlitzFirstResults (CheckID, Priority, FindingsGroup, Finding, Details, URL)
1957719577
SELECT 45 AS CheckID,
1957819578
50 AS Priority,
1957919579
''Performance'' AS FindingsGroup,

0 commit comments

Comments
 (0)