Skip to content

Commit cc80103

Browse files
authored
Merge pull request BrentOzarULTD#3914 from BrentOzarULTD/copilot/update-non-default-server-config-details
sp_Blitz: shorten “Non-Default Server Config” details to start with “Default value:”
2 parents 82f92af + ef4a02c commit cc80103

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
@@ -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)