An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Hi @Kritika Tripathi ,
When a newly created Azure Synapse workspace throws an "internal error" and shows the built-in serverless SQL pool as Unavailable, it is typically due to the following concerns.
Check the Synapse Workspace Firewall:
By default, Azure Synapse restricts public network access.
If your client IP is not explicitly allowed, the Synapse Studio UI will fail to communicate with the serverless backend, often masking the network block as a generic "internal error" or "unavailable" status.
- Go to the Azure Portal and open your Synapse workspace.
- In the left-hand menu under Security, click Networking.
- At the top, click + Add client IP to automatically populate your current public IP address.
- Check the box for Allow Azure services and resources to access this workspace if your query interacts with other Azure data sources.
- Click Save and wait about 2–3 minutes for the rules to propagate.
Verify Port 1443/1433 Is Open on Your Network:
- Synapse Studio requires outbound communication over TCP Port 1443 and UDP Port 53.
- External tools (like SSMS or Power BI) require outbound communication over TCP Port 1433.
Trigger a Manual call:
Open a new SQL script window in Synapse Studio.
Run a non-storage query to force the backend to initialise:
SELECT 1;
Please 'Upvote'(Thumbs-up) and 'Accept' as answer if the reply was helpful. This will be benefitting other community members who face the same issue.
Thank you!