简体   繁体   中英

How to take backup of SQL Server in AWS?

How to take backup of SQL Server in AWS ? Is there any other option other than native backup ?

Amazon Relational Database Service (Amazon RDS) supports native backup and restore for Microsoft SQL Server databases using full backup files (.bak files). You can import and export SQL Server databases in a single, easily portable file. You can create a full backup of your on-premises database, store it on Amazon Simple Storage Service (Amazon S3), and then restore the backup file onto an existing Amazon RDS DB instance running SQL Server.

There are mainly three components you will need to setup

  • An Amazon S3 bucket to store your backup files.
  • An AWS Identity and Access Management (IAM) role to access the bucket.
  • The SQLSERVER_BACKUP_RESTORE option added to an option group on your DB instance.

Reference- http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.Procedural.Importing.html

https://aws.amazon.com/blogs/aws/amazon-rds-for-sql-server-support-for-native-backuprestore-to-amazon-s3/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM