Hi Michael,
If you delete the logical server, the Long Term Retention (LTR) database backups will remain until their expiration date or until someone deletes them. If you need to restore an (unexpired) LTR database backup you may restore it to a different logical server.
To do this you would first list the LTR backups using CLI/PowerShell/REST API, then restore the one you need to a logical server.
For example, to get a list of LTR backups in East US, you could use PowerShell command similar to below (you can add more options to filter it more):
Get-AzSqlDatabaseLongTermRetentionBackup -Location eastus
To restore one of the LTR backups you could use command similar to below:
Restore-AzSqlDatabase -FromLongTermRetentionBackup -ResourceId <resourceId> -ResourceGroupName myResourceGroup -ServerName targetServer -TargetDatabaseName myRestoredDatabase
Get-AzSqlDatabaseLongTermRetentionBackup
Restore-AzSqlDatabase
https://learn.microsoft.com/en-us/powershell/module/az.sql/restore-azsqldatabase?view=azps-12.4.0
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP