SQL Azure works great when you want to work with structured data using relationships, indexes, constraints, etc.
The Azure storage table works great when you need to work with centralized structured data without connections and usually with large volumes.
Price: SQL Azure: $ 25.98 / mo for 5 GB
Storage table: $ 21.88 / m for 175 GB (without transactions or bandwidth) Therefore, when you store large amounts of data, the storage table is much cheaper ... think about registering, for example.
Centralization: Windows Azure is a distributed environment for servers, so if you save something on one machine, others do not know about it, so the storage table is a good solution for centralized logs, processing sessions, settings or something else (remember that there is latency even in one data center)
Speed: If you designed it correctly, in many cases the storage table should be faster than sql azure, but it probably depends on the use cases, and I really haven't tested it.
Ragnar Apr 21 2018-12-12T00: 00Z
source share