Skip to content

Commit 2d31833

Browse files
CopilotBrentOzar
andauthored
Update sp_Blitz non-default config detail wording
Agent-Logs-Url: https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit/sessions/7f54f118-755b-4c8e-9e39-ce219d78cf03 Co-authored-by: BrentOzar <245462+BrentOzar@users.noreply.github.com>
1 parent b147356 commit 2d31833

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Install-All-Scripts.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2457,10 +2457,10 @@ BEGIN
24572457
'Non-Default Server Config' AS FindingsGroup ,
24582458
cr.name AS Finding ,
24592459
'https://www.brentozar.com/go/conf' AS URL ,
2460-
( 'This sp_configure option has been changed. Its default value is '
2460+
( 'Default value: '
24612461
+ COALESCE(CAST(cd.[DefaultValue] AS VARCHAR(100)),
24622462
'(unknown)')
2463-
+ ' and it has been set to '
2463+
+ '. It has been set to '
24642464
+ CAST(cr.value_in_use AS VARCHAR(100))
24652465
+ '.' ) AS Details
24662466
FROM sys.configurations cr

sp_Blitz.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2455,10 +2455,10 @@ BEGIN
24552455
'Non-Default Server Config' AS FindingsGroup ,
24562456
cr.name AS Finding ,
24572457
'https://www.brentozar.com/go/conf' AS URL ,
2458-
( 'This sp_configure option has been changed. Its default value is '
2458+
( 'Default value: '
24592459
+ COALESCE(CAST(cd.[DefaultValue] AS VARCHAR(100)),
24602460
'(unknown)')
2461-
+ ' and it has been set to '
2461+
+ '. It has been set to '
24622462
+ CAST(cr.value_in_use AS VARCHAR(100))
24632463
+ '.' ) AS Details
24642464
FROM sys.configurations cr

0 commit comments

Comments
 (0)