Unable to create Synapse Administrator role access within Synapse Studio

Martin Hansen 20 Reputation points
2026-08-07T13:20:58.5933333+00:00

The entra user that previusly held the Synapse Administrator role access within Synapse Studio have left the company and the user have been been deleted.

I hold both the owner and the contributer access rights got the Synaps workspace - but I can't assign myself the Synapse Administrator role access within Synapse Studio.

What am I missing? There must be some way to grant Synapse Administrator role access within Synapse Studio without already being an Synapse Administrator.

best regards

Martin

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

Answer accepted by question author
Jose Benjamin Solis Nolasco 12,036 Reputation points Volunteer Moderator
2026-08-07T13:53:56.89+00:00

Welcome to Microsoft Q&A,

Hello @Martin Hansen , I hope you are doing well,

You are correct that Azure Owner and Synapse Administrator are different roles. However, Microsoft provides a recovery mechanism for exactly this situation when the original Synapse Administrator is no longer available.

Since you have Owner access through the subscription, you should be able to manage Azure RBAC assignments on the Synapse workspace. If Synapse Studio returns "Failed to add the role assignment", I recommend trying the assignment through PowerShell instead of Synapse Studio.

For example:

New-AzSynapseRoleAssignment `
  -WorkspaceName "<workspace-name>" `
  -RoleDefinitionName "Synapse Administrator" `
  -ObjectId "<your-Entra-object-id>"

Microsoft also documents using the role definition ID directly when the user has Azure RBAC permissions but is not yet a Synapse Administrator:

New-AzSynapseRoleAssignment `
  -WorkspaceName "<workspace-name>" `
  -RoleDefinitionId "00001111-aaaa-2222-bbbb-3333cccc4444" `
  -ObjectId "<your-Entra-object-id>"

The second approach can be useful because resolving the role by name may itself require permissions that you don't yet have.Before running it, verify that your Owner assignment is effective at the Synapse workspace scope or above, and that you are working in the correct Microsoft Entra tenant.

Once the Synapse Administrator assignment is restored, you can manage the remaining Synapse RBAC assignments from Synapse Studio > Manage > Security > Access control.

References:

Manage Synapse RBAC role assignments

If the PowerShell assignment also fails despite the effective Owner permission, please provide the exact error returned by New-AzSynapseRoleAssignment (with tenant/subscription IDs redacted). That will help determine whether this is an Azure RBAC permission issue or a Synapse backend issue.

If my answer helped you, please consider marking it as accepted. This helps others in the community find similar solutions.

Was this answer helpful?

1 person found this answer helpful.

2 additional answers

Sort by: Oldest
  1. AI answer

    2026-08-07T13:21:13.9633333+00:00

    Yes. A current Synapse Administrator is not required if there are no available Synapse Administrators.

    A user who has permission to manage Azure RBAC role assignments on the Synapse workspace can also manage Synapse RBAC role assignments. That allows adding the Synapse Administrator role even when the previous Synapse Administrator has left.

    What to do:

    1. Open Synapse Studio for the workspace.
    2. Go to Manage > Security > Access control.
    3. Select + Add.
    4. Set Scope to Workspace.
    5. Select the Synapse Administrator role.
    6. Select the required user or group.
    7. Create the role assignment.

    Important details:

    • Synapse RBAC is managed in Synapse Studio, not in Azure portal.
    • To manage Synapse RBAC role assignments normally, a user needs the Synapse Administrator role at the relevant scope.
    • However, to recover access when no Synapse Administrators are assigned or available, a user with permission to manage Azure RBAC role assignments on the workspace can still manage Synapse RBAC role assignments.
    • Changes to Synapse RBAC role assignments can take 2–5 minutes to take effect.
    • If access is granted through a Microsoft Entra group, group membership changes can take 10–15 minutes or longer to take effect.

    What is likely missing:

    • Contributor is not enough for this recovery path.
    • The required capability is permission to manage Azure RBAC role assignments on the workspace. The documented example for adding an administrator assigns Owner on the workspace, then assigns Synapse Administrator in Synapse Studio.

    If the Add option in Synapse Studio is unavailable or access is denied, check whether the current workspace role assignment is truly Owner on the Synapse workspace resource and not only Contributor.


    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

  2. Martin Hansen 20 Reputation points
    2026-08-07T13:38:55.1966667+00:00

    I am assigned the owner role through the parrent subscription (as well as the contributer role)
    User's image

    So I should have the requred access rights

    But I still get the "Failed to add the role assignment" in Synapse Studio when I try to add the Synapse Administrator role to my user

    Was this answer helpful?

    0 comments No comments

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.