AWS released RDS SQL Server S3 Import/Export just in time for our SQL Server migration. Documentation here.
While excellent for migrations, the feature has limitations:
SQL agent jobs can’t schedule S3 backups/restores due to credential passing issues (confirmed by AWS support)
Backups are several times larger than standard SQL backups—likely copying entire backup sets rather than individual backups, slowing staging/pre-production restores
Only one restored database version can exist per server, regardless of naming
Despite these issues, the feature simplifies staging/pre-production deployments. Production can be backed up to S3 via stored procedure, then restored on pre-production servers. This PowerShell script (called from Jenkins) automates pre-production data loading:
Drop existing databases (stored proc won’t run if database exists)
Comments