Hello Trevor Clendenin
Restore a deleted logical server in Azure SQL Database (Feature is in preview and is currently only enabled for certain subscriptions.)
You can restore your deleted Azure SQL logical server using Restore-AzSqlServer
PowerShell command.
- Sign in and connect to your Azure account.
Connect-AzAccount
- Select the desired subscription, replace
<subscription-id>
with the subscription name.
Select-AzSubscription -Subscription "<subscription-id>"
- Run the restore command as follows. Replace
<your-server-name>
and<your-resource-group-id>
with your deleted logical server's name and resource group ID.
$servername = <your-server-name>
$resourcegroup = <your-resource-group-id>
Restore-AzSqlServer -ServerName $servername -ResourceGroup $resourcegroup
Refer - Restore a deleted logical server (preview) - Azure SQL Database | Microsoft Learn
If you require any further assistance, please do not hesitate to reach out.