Configuring Encryption using the Ola Hallengren Backup Solution
ClarkChris
Posts: 8 Bronze 1
in SQL Backup
I am unable to restore the full backups (the key doesn't decrypt the full backup when using Redgate SQL Backup). Here is the example of the backup script:
EXECUTE [dbo].[DatabaseBackup]
EXECUTE [dbo].[DatabaseBackup]
@Databases = 'USER_DATABASES',
@Directory = 'R:\Backups',
@BackupType = 'FULL',
@Verify = 'Y',
@Compress = 'Y',
@CleanupTime = 48,
@BackupSoftware = 'SQLBACKUP',
@CheckSum = 'Y',
@CompressionLevel = 3,
@Threads = 3,
@Encrypt = 'Y',
@EncryptionAlgorithm = 'AES_256',
@EncryptionKey = 'ola5dKAWc3PuvU5k',
Tagged:
Answers