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.
Unable to delete Azure SQL DB, logs display Internal Server Error
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!
2 answers
Sort by: Most helpful
-
-
RahulRandive 9,901 Reputation points
2024-07-02T02:44:35.27+00:00 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!