Hi, I recently created an Azure Synapse workspace and was attempting to run a simple SQL query using the built-in serverless SQL pool. However, I encountered an issue where the built-in serverless SQL pool is displays internal error and is unavailable

Kritika Tripathi 5 Reputation points
2026-06-25T10:21:49.6+00:00

Screenshot 2026-06-24 185544

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.

0 comments No comments

2 answers

Sort by: Most helpful
  1. Megha Ramakrishnan 325 Reputation points
    2026-06-26T03:06:46.5166667+00:00

    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.

    1. Go to the Azure Portal and open your Synapse workspace.
    2. In the left-hand menu under Security, click Networking.
    3. At the top, click + Add client IP to automatically populate your current public IP address.
    4. Check the box for Allow Azure services and resources to access this workspace if your query interacts with other Azure data sources.
    5. Click Save and wait about 2–3 minutes for the rules to propagate.

    Verify Port 1443/1433 Is Open on Your Network:

    1. Synapse Studio requires outbound communication over TCP Port 1443 and UDP Port 53.
    2. 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!

    Was this answer helpful?


  2. Alex Burlachenko 23,655 Reputation points MVP Volunteer Moderator
    2026-06-25T13:43:19.56+00:00

    hi Kritika Tripathi & thx for sharing urs issue here at Q&A portal,

    Since this is a new Synapse workspace and the built-in serverless SQL pool shows Unavailable with internal error, this is likely not caused by ur SQL query. The built-in serverless pool is managed by Synapse and should be available by default. If it’s unavailable before even running normal queries, that usually points to workspace provisioning/backend state, regional capacity/service issue, or a Synapse control-plane problem.

    First try the boring stuff refresh Synapse Studio, sign out/in, open from Azure Portal again, and check from another browser. If it still shows Unavailable, check Azure Service Health for Synapse in that region.

    https://learn.microsoft.com/en-us/azure/synapse-analytics/sql/on-demand-workspace-overview

    https://learn.microsoft.com/en-us/azure/synapse-analytics/troubleshoot/troubleshoot-synapse-studio

    If the workspace was just created, wait a bit and retry. Sometimes serverless metadata takes time to settle. But if it stays like this for hours, open a Synapse support case w/ workspace name, region, subscription ID, UTC time, screenshot, and any Activity Log correlation IDs.

    Create another Synapse workspace in the same or diff region and see if the built-in pool comes up there. If the new one works, ur original workspace is prob stuck and needs backend cleanup.

    rgds,

    Alex

    &

    If my answer was helpful pls mark it and additional thx if u follow me at Q&A portal
    

    and at my blog https://ctrlaltdel.blog/

     

    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.