Reputation: 11
I need to migrate a SQL Server database from Azure to AWS. I've tried to create a backup on Azure but it seems that option is not available, not even through a script.
Upvotes: 0
Views: 1826
Reputation: 48522
You have at least a few options here:
Upvotes: 0
Reputation: 791
I don't know if exists an option to backup in Azure, as you said. However, you can export your database to a .BACPAC file and import it in a local instance of SQL Server. Then you can create a .bak file from this database to export to the AWS.
To export your database to a bacpac file, you can follow this documentation: https://learn.microsoft.com/en-us/azure/sql-database/sql-database-export
Upvotes: 2