What is a cloud relational database

Why is Azure called cloud-baseda database? What is a database cloud-based?

+3
source share
4 answers

A cloud-based relational database (SQL Azure with the Azure platform) is similar to a regular relational database such as SQL Server, except that you do not need to worry about licenses, installation, hardware updates, settings, disk (for example, where to store transaction logs) etc. The good news is that you can deploy a new database server in a minute, add databases in less than a minute, and just work with your application without worrying about the underlying infrastructure.

SQL Azure also provides long-term storage: all records are replicated to at least three separate areas of the disk, so you have no risk of data loss. You still need a backup plan, as the DELETE statement is also instantly replicated, but you don't need to worry about disk failures.

, , .. SQL Azure " " .

SQL Azure Azure Storage ( , ). , .

+6

SQL Azure - , :

  • pay-as-you-go;
  • , :
  • ;
  • , , . Microsoft .

.

+3
0

Source: https://habr.com/ru/post/1776931/


All Articles