Skip to content

Commit 7c48a7f

Browse files
committed
#2134 sp_BlitzFirst compat w/SQL 2008
Had typo in one of the checks. Fixes #2134 on SQL Server 2008.
1 parent b7aa1ee commit 7c48a7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sp_BlitzFirst.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ BEGIN
293293
We start by creating #BlitzFirstResults. It's a temp table that will store
294294
the results from our checks. Throughout the rest of this stored procedure,
295295
we're running a series of checks looking for dangerous things inside the SQL
296-
Server. When we find a problem, we insert rows into #BlitzResults. At the
296+
Server. When we find a problem, we insert rows into the temp table. At the
297297
end, we return these results to the end user.
298298
299299
#BlitzFirstResults has a CheckID field, but there's no Check table. As we do
@@ -1818,7 +1818,7 @@ If one of them is a lead blocker, consider killing that query.'' AS HowToStopit,
18181818
BEGIN
18191819
/* Antiques Roadshow SQL 2008R2 - version */
18201820
SET @StringToExecute = N'
1821-
INSERT INTO #BlitzResults (CheckID, Priority, FindingsGroup, Finding, Details, URL)
1821+
INSERT INTO #BlitzFirstResults (CheckID, Priority, FindingsGroup, Finding, Details, URL)
18221822
SELECT 45 AS CheckID,
18231823
50 AS Priority,
18241824
''Performance'' AS FindingsGroup,

0 commit comments

Comments
 (0)