How can I copy a SQL Azure Database to a server on a different subscription?
Posted
by
Tragedian
on Server Fault
See other posts from Server Fault
or by Tragedian
Published on 2013-01-16T17:47:37Z
Indexed on
2013/06/30
22:22 UTC
Read the original article
Hit count: 251
Azure
I'm trying to create a copy of a SQL Azure database. The source and destination servers are associated with two different subscriptions, but they are located in the same data-centre.
I've been reading Copying Databases in Windows SQL Azure Database and How to: Copy Your Databases (Windows Azure SQL Database) for instructions on this, but I'm not sure if my scenario is covered.
I would like to use the CREATE DATABASE Database1B AS COPY OF Database1A;
command, but I don't know what the implications are on the accounts used, or what I need to set up between the two databases before this command is possible.
Has anybody achieved this type of copy and can elaborate?
© Server Fault or respective owner