Hi @Hitesh Narula,
It seems like you're seeing the error at all DWU levels, the issue isn’t tied to just the performance tier it’s most likely because your Azure subscription lacks the necessary quota, or the required resource provider (Microsoft.Synapse
) is not registered.
Even the lowest tier (DW100c) requires available quota in your selected region. If your subscription currently has no Synapse quota allocated, the creation will be blocked regardless of DWU level.
From your screenshot, I also noticed that the “New Quota Request” button is greyed out. This often happens when the Microsoft.Synapse
resource provider isn’t registered yet.
To enable quota management and resource creation for Synapse, make sure the Microsoft.Synapse
provider is registered.
- Go to the Azure Portal
- Navigate to Subscriptions and select your subscription
- In the left-hand menu, click Resource providers
- Search for
Microsoft.Synapse
- If it shows Not Registered, click Register. Wait 1–2 minutes for the status to change to Registered https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-providers-and-types#register-resource-provider
Once the provider is registered, go to Usage + Quotas in the Azure Portal, set the Provider filter to Azure Synapse
then you should now be able to click New Quota Request. Submit a request to increase the DWU quota for your region, even DW100c requires quota availability
If you're still blocked in your current region, consider creating the SQL pool in another supported region (e.g., East US, West Europe). https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/
I hope this helps! If you found this useful, please consider upvoting so others can benefit too.