Unable to delete Azure SQL DB, logs display Internal Server Error

Mahesh Jaganiya 0 Reputation points
2024-07-01T19:44:58.8566667+00:00

I recently created a MSSQL server, which I was trying to move to an elastic pool. In between I initiated the deletion of the database, I received the notification for successful deletion, however, the database is still present. I checked the Activity Logs of the database and it is showing an error, The resource operation completed with terminal provisioning state 'Failed'. , The JSON contains the following message:

The resource operation completed with terminal provisioning state 'Failed'.\",\"details\":[{\"code\":\"InternalServerError\",\"message\":\"An unexpected error occured while processing the request. Tracking ID: '68343e49-e04e-47ff-8d4c-ae34e04e4128

It's been a day now, still unable to delete the database. Can somebody help me with this ? DB Instance is still getting charged. Thanks!

Azure SQL Database
Azure
Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,055 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Erland Sommarskog 105.8K Reputation points MVP
    2024-07-01T21:00:56.6833333+00:00

    If you have a support plan that permits it, by all means open a support case through the portal. It appears that something has gone wrong on the Microsoft side.


  2. Rahul Randive 9,091 Reputation points Microsoft Employee
    2024-07-02T02:44:35.27+00:00

    Hi @Mahesh Jaganiya

    Try connecting the server using SSMS and execute below T-SQL Command to drop the database and see if it's get deleted.

    DROP DATABASE database_name [;]

    Thank You!