Download an entire SQL Azure database as single file

Viewed 24968

Is there a facility in Azure to get a copy of the database? Or rather, detach the mdf and get it as file? On occasion I create a database in the cloud, it's up for a while, and then I want to take it down and archive it. My current rutine copies the database using SQL Azure Migration Wizard to a local Express instance, which I then detach and put in a safe place.

EDIT Interestingly my method of choice throws an exception this time around. So it's far from ideal.

7 Answers

Since I've asked this question, the Azure management console added an option to export the entire database to blob storage. You can keep your backups there, but if you prefer a hardcopy there are many blob explorer tools such as this one.

A good free option I've been using for past few years is Sql Backup and Ftp. It's 100% free if you backup to your local laptop.

External storage requires paid license though.

From the website:

No more multi-step SSMS configuration, just a single form to automate backups: select databases, backup (full, diff, tran log), encrypt, compress, send to a folder, FTP or cloud service: cloudservices

schedule backups, receive confirmation emails and restore when needed.

Related