Share via

Impact to SQL Server access when moving Subscription and SQL Server Database Resources

Glenn Seehausen 20 Reputation points
2026-04-28T16:24:13.5966667+00:00

I am about to have Microsoft move a Subscription and all of its resources from one Account to another. The SQL Server Databases are constantly being accessed via direct calls by my customers using SELECT, INSERT, UPDATE, and DELETE SQL Statement. Their IP Addresses are being white-listed so they can do this. All other security is not managed within Azure for these SQL Databases, and is instead managed in the SQL Server Database using DB Logins and Passwords so they can use the SQL Statement to read and modify data in them.

Will moving the Subscription and Resource cause customers to no longer be able to access the SQL Database? Or will it seamlessly move, including all white-listed IPs and all SQL Server managed security?

Azure SQL Database
0 comments No comments

Answer accepted by question author

  1. Manoj Kumar Boyini 13,600 Reputation points Microsoft External Staff Moderator
    2026-04-28T17:33:26.7866667+00:00

    Hi @Glenn Seehausen

    The impact depends mainly on whether the subscription move happens within the same Microsoft Entra tenant or across tenants.

    For a move within the same tenant, Azure performs a control-plane reassignment (not a redeployment). In this case, your Azure SQL Database remains unchanged from a connectivity perspective:

    • The server endpoint (e.g., yourserver.database.windows.net) stays the same
    • Server-level firewall rules (IP whitelisting) are preserved
    • SQL logins, users, and passwords inside the database are not affected

    So your customers should generally continue accessing the database without changes. Typically there is minimal impact, although a brief transient connection interruption can occur during the move.

    However, if the subscription is moved across tenants, additional considerations apply:

    • Azure RBAC permissions are not carried over and must be reassigned
    • Microsoft Entra configurations (if any) require reconfiguration in the target tenant
    • Managed identities are not preserved
    • Some validation or reconfiguration may be needed post-move

    These do not impact SQL authentication directly (as in your scenario), but they can affect administrative access and integrations.

    Also note that the resource ID changes after the move, so any scripts, automation, or tools referencing the old resource ID should be updated.

    References:
    https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/move-resource-group-and-subscription?tabs=azure-cli
    https://learn.microsoft.com/en-us/azure/role-based-access-control/transfer-subscription
    https://learn.microsoft.com/en-us/azure/azure-sql/database/logical-servers?view=azuresql&tabs=portal

    Please let us know if you have any questions or concerns.

    1 person found this answer helpful.

0 additional answers

Sort by: Most 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.