Hi Scott,
You can use SQL Server Management Studio (SSMS) to delete the database. For example, connect to your Azure SQL Server using SSMS, click New Query, enter command similar to below, and click Execute
DROP DATABASE [## Diogenes_db_2024-08-20T08-54Z]
WARNING—The above command deletes a database, so it is critical that you enter the correct database name and are certain you do not need it.
You may need to add a firewall rule to your Azure SQL server allowing your client PC's public IP so that you can connect using SSMS. You can do this in the portal by navigating to your SQL Server -- Security -- Networking blade.
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP