Mayuran Parathalingam
Mayuran Parathalingam

Reputation: 117

How to backup an Azure SQL Server database and restore in sql server in a physical server

We have SQL server database in Azure SQL Server instance. I want to backup the database onto a local hard drive and restore it to a physical server. How can I do this?

It seems backup is disabled in Azure SQL Server?

Thanks.

Upvotes: 1

Views: 544

Answers (1)

kim
kim

Reputation: 3421

You got a few options to move the data:

DMA - Migrate DB

  • You can also export the database in Azure Sql to a .bacpac file, stored in an Azure Storage blob. See this link for more info. You can then download the file and import the .bacpac file in SSMS localy.

    For reference, a .bacpac file is a ZIP file with an extension of 'bacpac' containing the metadata and data from a SQL Server database.

Azure SQL - Export

Upvotes: 6

Related Questions