Skip to content

Commit 842526e

Browse files
committed
Issue #3334: sp_Blitz Fails because of permissions
1 parent 305e9c6 commit 842526e

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
@@ -196,7 +196,7 @@ AS
196196
,@SkipXPCMDShell bit = 0
197197
,@SkipMaster bit = 0
198198
,@SkipMSDB bit = 0
199-
,@SkipModel BIT = 0
199+
,@SkipModel bit = 0
200200
,@SkipTempDB bit = 0
201201
,@SkipValidateLogins bit = 0;
202202

@@ -307,7 +307,7 @@ AS
307307
SET @SkipValidateLogins = 1;
308308
END; /*Need execute on sp_validatelogins*/
309309

310-
IF ISNULL(@SkipModel, 0) != 1 /* If @SkipModel hasn't been set to 1 by the caller */
310+
IF ISNULL(@SkipModel, 0) != 1 /*If @SkipModel hasn't been set to 1 by the caller*/
311311
BEGIN
312312
IF EXISTS
313313
(

0 commit comments

Comments
 (0)