AWS RDS Import/restore SQL 服务器数据库
AWS RDS Import/restore SQL Server database
如何将 SQL 服务器 .bak
文件从 EBS/EFS
卷导入 AWS RDS?官方文档使用 S3
存储 .bak
文件,但 S3
的最大文件大小为 5GB。如何使用替代存储位置,例如简单 EBS
卷?
您可以通过 multi-part upload API, up to a maximum filesize of 5 terabytes. From the official S3 FAQs:
将大于 5 GB 的文件上传到 S3
The total volume of data and number of objects you can store are unlimited. Individual Amazon S3 objects can range in size from a minimum of 0 bytes to a maximum of 5 terabytes. The largest object that can be uploaded in a single PUT is 5 gigabytes.
如果您不知道如何将 EBS/EFS 用于 RDS Native Backup and Restore.
,这是一种可能的解决方法
如何将 SQL 服务器 .bak
文件从 EBS/EFS
卷导入 AWS RDS?官方文档使用 S3
存储 .bak
文件,但 S3
的最大文件大小为 5GB。如何使用替代存储位置,例如简单 EBS
卷?
您可以通过 multi-part upload API, up to a maximum filesize of 5 terabytes. From the official S3 FAQs:
将大于 5 GB 的文件上传到 S3The total volume of data and number of objects you can store are unlimited. Individual Amazon S3 objects can range in size from a minimum of 0 bytes to a maximum of 5 terabytes. The largest object that can be uploaded in a single PUT is 5 gigabytes.
如果您不知道如何将 EBS/EFS 用于 RDS Native Backup and Restore.
,这是一种可能的解决方法