Skip to content

Commit e93fbbf

Browse files
committed
#3610 sp_Blitz remove ampersand
Which broke Markdown output. Closes #3610.
1 parent ec68e26 commit e93fbbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sp_Blitz.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4076,7 +4076,7 @@ AS
40764076
''Informational'' AS FindingGroup ,
40774077
''Backup Compression Default Off'' AS Finding ,
40784078
''https://www.brentozar.com/go/backup'' AS URL ,
4079-
''Uncompressed full backups have happened recently, and backup compression is not turned on at the server level. Backup compression is included with SQL Server 2008R2 & newer, even in Standard Edition. We recommend turning backup compression on by default so that ad-hoc backups will get compressed.''
4079+
''Uncompressed full backups have happened recently, and backup compression is not turned on at the server level. Backup compression is included with Standard Edition. We recommend turning backup compression on by default so that ad-hoc backups will get compressed.''
40804080
FROM sys.configurations
40814081
WHERE configuration_id = 1579 AND CAST(value_in_use AS INT) = 0
40824082
AND EXISTS (SELECT * FROM msdb.dbo.backupset WHERE backup_size = compressed_backup_size AND type = ''D'' AND backup_finish_date >= DATEADD(DD, -14, GETDATE())) OPTION (RECOMPILE);';

0 commit comments

Comments
 (0)