An Azure relational database service.
Hi VPI Hodling ,
Welcome to Microsoft Q&A and thank you for posting your question!
Unfortunately, once an Azure SQL Server resource is permanently deleted, it cannot be recovered. However, you can restore the database if it was deleted within the retention period and backups are still available.
Recovery Options
- Check if the server still exists
- Go to Azure Portal → SQL Servers.
- If the server is gone, create a new SQL Server in the same region and subscription.
- Restore from Backup
- Navigate to Azure Portal → SQL Databases → + Create → Restore.
- Select Backup source:
- Deleted database (within retention period, usually 7 days).
- Backup from another server (if available).
- Configure:
- Target server (existing or newly created).
- Database name, compute, and storage.
- Click Review + Create.
- Elastic Pool Scenario
- If the database was part of an elastic pool, recreate the pool first, then restore the database into it.
- Validate After Restore
- Test connectivity using SSMS or Azure Data Studio.
- Update connection strings if the server name changed.
If Both Server and Database Are Permanently Deleted
Recovery is not possible unless:
- You have Geo-restore backups in another region.
- You exported a BACPAC file to storage earlier.
References