Hello Gustavo Davila,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you need how you can resume Azure database stuck in Pausing Status.
In most documented cases, the recommended action is to allow time for Azure to self-heal. Customers are advised to wait anywhere from 2 to 6 hours, while monitoring the database state in the Azure portal and reviewing Resource Health for transient backend errors such as login failures.
During this waiting period, it is also best practice to verify whether the issue correlates with a regional service degradation. Checking Azure Service Health in the portal can help confirm whether SQL Database services are experiencing incidents that may delay resume operations. This step prevents unnecessary configuration changes when the root cause is external and already being addressed by Microsoft.
If the database does not recover after a reasonable waiting window, a manual resume trigger may be attempted. This can be done either through the Azure portal by navigating to Compute + Storage and selecting Resume, or by nudging the compute allocation using Azure CLI. The following command can sometimes force the platform to re-evaluate the database state:
az sql db update \
--resource-group <ResourceGroup> \
--server <ServerName> \
--name <DatabaseName> \
--compute-model Serverless \
--capacity <existing_or_new_capacity>
This approach does not change the database configuration but may prompt the backend to reassign compute resources.
If the database remains stuck despite manual attempts, the only reliable resolution is to engage Microsoft Support. Support engineers have access to backend controls that are not exposed to customers and can directly reset the database lifecycle state. This escalation is strongly recommended when business-critical workloads are impacted, as no customer-side operation can fully remediate a platform-level pause failure.
I hope this is helpful! Do not hesitate to let me know if you have any other questions or clarifications.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.