Can't create Azure Synapse Analytics workspace. Error while deployment.

Linto 20 Reputation points
2024-12-09T18:07:14.6966667+00:00

Can't create Azure Synapse Analytics workspace. Error while deployment.

{

"code": "InvalidRequestContent",

"message": "The request content was invalid and could not be deserialized: Required property 'name' not found in 'sku'."

}

User's image

Azure Synapse Analytics
Azure Synapse Analytics

An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.


Answer accepted by question author
Chandra Boorla 15,480 Reputation points Microsoft External Staff Moderator
2024-12-16T01:32:33.78+00:00

@Linto

I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to accept the answer.

Issue:

Can't create Azure Synapse Analytics workspace. Error while deployment.

{

"code": "InvalidRequestContent",

"message": "The request content was invalid and could not be deserialized: Required property 'name' not found in 'sku'."

}

Solution:

I attempted to create a Synapse Analytics workspace on the Azure portal.

I resolved the issue by registering the necessary service providers. Navigate to: Azure portal > Subscriptions > Select your subscription > Settings > Resource providers > Microsoft.Network > Register After some time, the problem was resolved.You may try this solution.

Additionally, ensure the following services are registered. If not, you can register them: Microsoft.Authorization, Microsoft.Compute, Microsoft.ManagedIdentity, Microsoft.Network, Microsoft.Sql, Microsoft.Storage, Microsoft.Synapse

If I missed anything please let me know and I'd be happy to add it to my answer, or feel free to comment below with any additional information.

Hope this helps. Do let us know if you have any further queries.


If this answers your query, do click Accept Answer and Yes for was this answer helpful. And, if you have any further query do let us know.

Was this answer helpful?


1 additional answer

Sort by: Most helpful
  1. Amira Bedhiafi 43,046 Reputation points MVP Volunteer Moderator
    2024-12-09T18:58:31.6566667+00:00

    I think there is a required property (name) was not found in the sku definition.

    If you're using an ARM (Azure Resource Manager) template or Bicep file for deployment, check the sku section in the template.

    "sku": {
      "name": "DW100c"
    }
    

    Replace DW100c with the desired Synapse SKU tier, such as DW200c, DW300c...

    If you are deploying via the Azure portal, ensure that you have selected a valid pricing tier (SKU) for Synapse Analytics during the configuration process.

    Links to help you :

    https://learn.microsoft.com/en-us/answers/questions/1854727/how-to-fix-the-following-problem-while-deploying-a

    https://learn.microsoft.com/en-us/azure/synapse-analytics/known-issues

    Was this answer helpful?


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.