How to find Azure Subscription Quota How to find Azure Subscription Quota azure azure

How to find Azure Subscription Quota


For Azure SQL Servers, there is a hidden default max of 6 Azure SQL SERVERS (Not databases). Once you attempt to create the 7th, you will receive this error: New-AzureSqlDatabaseServer : Cannot move or create server. Subscription 'XXXXXX-XXXX-XXXXX-XXXXX-XXXXXXXXXX' will exceed server quota. Submit a billing request to increase the quota limit on SQL Azure Servers.


You can find the quota information in the azure management portal. Scroll through the list of items in the left bar and at the end you will find "Settings". When you click "Settings" and switch to "Usage" tab you can see quota information as in the screenshot below.

enter image description here

Hope this helps.


I don't think portal exposes this functionality (or at least I could not find it :)). However if you're interested in finding about quota information about some of the services, you can do so programmatically by performing Get Subscription operation on your subscription: http://msdn.microsoft.com/en-us/library/windowsazure/hh403995.aspx. This operation would tell you how many cores available to you in your subscription, how many storage accounts and cloud services you can create in your subscription.

At least these details are available through Azure Management Studio/Cloud Storage Studio from Cerebrata (http://www.cerebrata.com) as well, if you're looking for 3rd party tools. After you add a subscription there, just right click on your subscription node and click on View Subscription Properties.

You could also find the quota information on pricing page as well: https://www.windowsazure.com/en-us/offers/commitment-plans (Just scroll down to Usage Quotas section).

One last comment: You could easily increase the quota by contacting customer support. The link is there in the pricing page link I mentioned above.

Update

As far as quota for SQL Azure is concerned, I could find a limit on the maximum number of database servers allowed per subscription however there's a limit of 149 user databases (150 including master database) / server: http://msdn.microsoft.com/en-us/library/windowsazure/ee336245.aspx#dcasl. Can you ensure you're not exceeding that quota?