Hi @Monish Bhanushali ,
Welcome to Microsoft Q&A platform and thanks for posting your query here.
As per my understanding you are trying to replicate the lab provided for Azure synapse analytics where you are trying to provision Azure synapse analytics resource and explore various possibilities like creation of data pipelines, notebooks, use serverless sql pool, spark pool etc. However, you are facing an error : "Microsoft.Synapse is not yet registered. Waiting for 30 seconds before rechecking" and "Microsoft.Sql is not yet registered. Waiting for 30 seconds before rechecking" .
Could you please confirm when exactly are you getting this error ? Is it while deploying Azure synapse analytics resource or are you manually trying to register the above 2 resource providers- Microsoft.Synapse and Microsoft.Sql ?
First of all, kindly make sure that you possess either 'Owner' role or 'Contributor' role in Azure Synapse analytics workspace. "You must have permission to do the /register/action
operation for the resource provider. The permission is included in the Contributor and Owner roles."
If still getting error, kindly try to register the resource provider manually if not tried yet.
Here are the steps to do that via Azure portal : Register resource provider
Alternatively, you can try registering the resource provider using other options like Azure CLI or Azure powershell , using below commands:
- Using Azure CLI: If you have Azure CLI installed, you can manually register the resource providers:
bash az provider register --namespace Microsoft.Synapse az provider register --namespace Microsoft.sql
powershell Register-AzResourceProvider -ProviderNamespace "Microsoft.Synapse" Register-AzResourceProvider -ProviderNamespace "Microsoft.Sql"