SQL database Deployment Issues

Grant Anderson 0 Reputation points
2026-09-09T20:52:54.5866667+00:00

Hello i'm trying to set up for a SQL server for my university class. I am one of the ones in my class that cannot get my server too deploy. When I set up my server I keep getting this error. I've been troubleshooting trying to fix the error for quite some time now. On my current subscription I only have access to a handful of regions, so i've tried switching too all my allowed regions and I'm still not having any luck. Thanks Screenshot 2026-09-09 at 4.50.18 PM.png

Azure SQL Database

2 answers

Sort by: Oldest
  1. AI answer

    2026-09-09T20:53:09.4566667+00:00

    For Azure SQL Database, that error pattern usually maps to one of these subscription-level issues:

    1. The subscription is not registered with the SQL resource provider (Microsoft.Sql)
    2. The selected region is not enabled for SQL server creation on that subscription
    3. The subscription has hit a regional quota or capacity limit

    Since all allowed regions were already tried, the most direct path is:

    1. In the Azure portal, go to All ServicesSubscriptions.
    2. Select the affected subscription.
    3. Under Settings, open Resource providers.
    4. Search for sql.
    5. For Microsoft.Sql, select Register or Re-register.

    If using CLI, run:

    az provider register --namespace Microsoft.Sql
    

    If using PowerShell, run:

    Register-AzResourceProvider -ProviderNamespace Microsoft.Sql
    

    After that, try creating the logical SQL server again.

    If the same error continues, the documented resolution is to open a support request for region access / Service and subscription limits so the region can be enabled for the subscription. The documented errors for this include:

    • Your subscription does not have access to create a server in the selected region.
    • Provisioning is restricted in this region. Please choose a different region. For exceptions to this rule please open a support request with issue type of 'Service and subscription limits'
    • Location 'region name' is not accepting creation of new Windows Azure SQL Database servers for the subscription 'subscription id' at this time

    If the issue is quota-related, the documented errors include:

    • Server quota limit has been reached for this location. Please select a different location with lower server count.
    • Could not perform the operation because server would exceed the allowed Database Throughput Unit quota of xx.

    A similar resolved case showed deployment succeeding after region-level access was enabled for the subscription.


    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

  2. Deepesh Dhake 1,165 Reputation points
    2026-09-10T13:08:21.95+00:00

    That error is the free-offer restriction, not a region issue. The simplest fix is to turn off "Apply free offer" on the Compute + storage blade, choose a small tier (Basic or minimal serverless General Purpose), and deploy.

    Was this answer helpful?

    0 comments No comments

Your answer

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