1

is there a script available which take back up of database which is in SQL Azure???

1

3 Answers 3

2

Well, backup like you know from MS SQL 2008 is not supported on Azure SQL http://msdn.microsoft.com/en-us/library/windowsazure/ff394115.aspx

Redgate has a free backup tool http://www.red-gate.com/products/dba/sql-azure-backup/

For information on how to do backup and restore using BCP.exe and http://sqlazuremw.codeplex.com/ then see http://social.msdn.microsoft.com/Forums/kk-KZ/ssdsgetstarted/thread/b2a3c161-96b1-4201-ac46-a747e1806be1 .

Sign up to request clarification or add additional context in comments.

Comments

1

There is a great new product from www.bluesyntax.net which has a couple of options. It only costs 50 USD. There are options to backup to a local file or back up to blob storage.

They will give you a 30 day Evaluation Key if you ask.

In my opinion it is well worth a look. I am certainly going to be purchasing a licence.

Comments

0

There is now an export feature you can use from the Azure Management Portal to produce a BACPAC file which can then be imported as a local database. I found an excellent blog post (from the same blog @dunnry mentions in his comment on your question) that details the steps required and I have and summarised them in another answer.

If you do not mind the backup being on Azure too then look at the tSQL command

CREATE DATABASE MyDBBackup23_6_12 AS COPY OF MyDB

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.