making users comfortable when their data sits on azure

db042190 1,521 Reputation points
2023-05-04T17:57:11.52+00:00

hi we might want one of our operation data stores (ODS) to sit on an azure sql database. ODS's aren't normally mission critical but they can play an important role in running day to day business. So how do you tell your user not to worry that if the internet goes down, their azure sourced reporting app will as well?

Azure SQL Database
{count} votes

1 answer

Sort by: Most helpful
  1. Alberto Morillo 34,671 Reputation points MVP Volunteer Moderator
    2023-05-04T20:02:22.3433333+00:00

    In countries like mine, sometimes you get Inernet outages by specific Internet providers and sometimes power outages occur. You can continue to have your main ODS database (let's call it hub database) on the Azure cloud as an Azure SQL database. You can also have a local SQL Server instance (on-premises) that has a copy of the Azure SQL Database (let's call that database a member database). You can keep the hub and member database in sync (one-direction or bi-directional sync, as you decide) to keep them in sync using a free tool named SQL Data Sync.

    In case of a power outage or Internet outage, reports can try to connect to Azure SQL database (hub database) and will fail, then they can try to connect to the on-premise (member) database.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.