We have large RDS SQL server in our environment and currently backup is not using multifile option and backup is very slow.
I check the AWS documentation, it says that for large large database it support multifile backups.
-
Amazon S3 has a size limit of 5 TB per file. For native backups of larger databases, you can use multifile backup.
example:
Example of multifile backup
exec msdb.dbo.rds_backup_database
@source_db_name='mydatabase', @s3_arn_to_backup_to='arn:aws:s3:::mybucket/backup*.bak',
@number_of_files=4;
My question is Does Commvault support (v11.32) multifile backup for RDS SQL server.
Best Regards