0

We have two different Azure Accounts with each having a set of databases.

Now, there is one database that we need to access in both the accounts with joins involving local tables (Especially one huge local table).

We tried distributed queries, but the performance dips with joins. We, therefore, want to mirror a table from the other azure account into this account's db so that it becomes a local table and join work faster.

We only need read only access to the mirrored table, the changes need to reflected almost instantaneously though the frequency of updates is not that high.

What is the way of achieving this ?

3
  • What do you mean by two different Azure accounts? Are you talking about different subscriptions or different enterprise accounts? Commented Aug 16, 2016 at 11:52
  • Two different enterprise accounts with different logins to Azure portal. Commented Aug 16, 2016 at 18:03
  • They are hosted in one region though if that helps. Commented Aug 16, 2016 at 18:05

1 Answer 1

0

It seems like you are using Azure SQL. Please mention that your DB is Azure SQL or on any VM using MS SQL. If it is Azure SQL, you can simply replicate your db with sync tool available in azure. please follow this link:

https://azure.microsoft.com/en-in/documentation/articles/sql-database-get-started-sql-data-sync/

You can use single way sync so ops will get more faster.

HTH.

1
  • 1
    We are using Azure Databases. The issue is these databases are with two different AZURE accounts. I already looked at the azure data sync but there does not seem to be an option to select reference database in another azure account. It lists only the databases that have been added to the current account. We do not want to download the client app as it means we need to maintain a VM or server just for the sync app to sync between the two Azure DBs. Commented Aug 16, 2016 at 10:39

Your Answer

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.