in Education by
When should I use SQL Azure and when should I use table Storage? I was thinking, use table storage for transaction processing scenarios e.g. debit-credit accounts kind of scenario and use SQL Azure when data will not be used for transactional purposes e.g reporting. What do you think? Select the correct answer from above options

1 Answer

0 votes
by
 
Best answer
There are multiple aspects which are there to be considered: SQL Azure is relatively expensive for massive storage, does not scale super well and is limited to 150gigs/database, There are no transaction fees against SQL Azure and developers already know how to code against it. ATS(Azure Table Services) is capable of mega-scalability, it is dirt cheap to store but gets expensive to frequently access. a significant amount of CPU power is required from nodes to manipulate. It basically forces to compute nodes to become mini-DB servers as the delegation of all relational activity is turned over to them. frequently accessed data that does not need huge scalability and is not super large in size should be destined for SQL Azure, otherwise Azure Table Services. For example, transactional data from financial transactions is a perfect place for ATS, while meta information (account profiles, names, addresses, etc.) is perfect for SQL Azure.

Related questions

0 votes
    Is there any way to stop a SQL Azure DB so that it doesn't charge anything towards our account? I don't ... cloud services and VM's. Select the correct answer from above options...
asked Jan 31, 2022 in Education by JackTerrance
0 votes
    I'm trying to make a web-based .NET application from scratch. I'm considering using Microsoft Azure to host it ... advice for using it. Select the correct answer from above options...
asked Jan 20, 2022 in Education by JackTerrance
0 votes
    I am trying to run the following SQL: INSERT INTO Suppliers ( [SupplierID], [CompanyName]) Select [SupplierID], [ ... is very slow. Select the correct answer from above options...
asked Jan 31, 2022 in Education by JackTerrance
0 votes
    How can I delete the associated account with the virtual machines On the preview portal on deleting the storage account ... as well. Select the correct answer from above options...
asked Jan 20, 2022 in Education by JackTerrance
0 votes
    So the scenario is the following: I have multiple instances of a web service that writes a blob of data to ... other unknown issues? Select the correct answer from above options...
asked Jan 31, 2022 in Education by JackTerrance
0 votes
    I am starting with Windows Azure. I have an Azure account with Microsoft and would like to use it from my ... Azure management portal? Select the correct answer from above options...
asked Jan 30, 2022 in Education by JackTerrance
0 votes
    I am working on vs 2010 and EF 4.1 with SQL server database. Below mentioned code works fine with local SQL ... , Func`1 continuation) Select the correct answer from above options...
asked Feb 3, 2022 in Education by JackTerrance
0 votes
    I am creating a new read/write user on SQL Azure as follows: -- Connected to master create login [fred] ... doing wrong or missing? Select the correct answer from above options...
asked Jan 31, 2022 in Education by JackTerrance
0 votes
    I am asking this in very general sense. Both from cloud provider and cloud consumer's perspective. Also the ... Server like Biztalk? Select the correct answer from above options...
asked Jan 30, 2022 in Education by JackTerrance
0 votes
    I just want to know whether a blob exists in a particular container or not. Simple question right! I'll download ... it doesn't exist. Select the correct answer from above options...
asked Jan 20, 2022 in Education by JackTerrance
0 votes
    You need to ensure that Azure DNS can resolve names for your registered domain. What should you implement? A. An MX Record B. A Secondary Zone C. A CNAME Record D. Zone Delegation...
asked Nov 20, 2022 in Education by JackTerrance
0 votes
    I've created a BACPAC backup of my Azure SQZ database using the option "Export" in Azure management console. I ... written it already . Select the correct answer from above options...
asked Jan 20, 2022 in Education by JackTerrance
0 votes
    Could someone tell me how to become an Azure expert? Select the correct answer from above options...
asked Jan 6, 2022 in Education by JackTerrance
0 votes
    Can someone tell me the differences between the Azure Web Site and the Azure Web Roles for an ASP.NET MVC ... Cache service locally? Select the correct answer from above options...
asked Jan 20, 2022 in Education by JackTerrance
0 votes
    Azure Traffic manager receives a query from _____________. A. Endpoint B. Client C. Routing Method D. All the options...
asked Nov 21, 2022 in Education by JackTerrance
...