An Azure relational database service.
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.