Skip to content

Commit 7593547

Browse files
committed
Fixes issue in data mover
Rogue parenthesis
1 parent d7bf0cd commit 7593547

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sp_BlitzBackups.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1460,8 +1460,8 @@ END
14601460
SELECT database_name, database_guid, backup_set_uuid, type, backup_size, backup_start_date, backup_finish_date, media_set_id,
14611461
compressed_backup_size, recovery_model, server_name, machine_name, first_lsn, last_lsn, user_name, compatibility_level,
14621462
is_password_protected, is_snapshot, is_readonly, is_single_user, has_backup_checksums, is_damaged, ' + CASE WHEN @ProductVersionMajor >= 12
1463-
THEN + N'encryptor_type, has_bulk_logged_data)' + @crlf
1464-
ELSE + N', has_bulk_logged_data)' + @crlf
1463+
THEN + N'encryptor_type, has_bulk_logged_data' + @crlf
1464+
ELSE + N', has_bulk_logged_data' + @crlf
14651465
END
14661466
SET @StringToExecute +=N'
14671467
FROM msdb.dbo.backupset b

0 commit comments

Comments
 (0)