Unable to delete azure database

In the list of sql server database here:

https://manage.windowsazure.com/#Workspaces/SqlAzureExtension/Databases 

I select the database, and below - "Delete".

I press the delete button and it processes for a while and then says:

Failed to delete the database "system-50e5f905 -... etc."

I follow the link for more information, where it just says:

Invalid request

Additional Information

It seems that they are not related to each other by resources.

I was able to create and delete a new database.

I also connected to the MS SQL server management studio, and I can only see two named databases, not one of the databases that have the system-guid name system-guid for the name.

+6
source share
2 answers

Databases with the system-SOME GUID name format can be federated.

Deletion (deletion) of the federation should be performed on the database management portal for the main database.

Caution: I do not know the consequences of refusing to federate, so make sure you have backup copies of the data that you do not want to lose, or study this further.

+4
source

I deleted my database on Azure using "SQL Server Management Studio", right-click "Delete".

using the Code First command with the Update-Database command, it will be created.

0
source

Source: https://habr.com/ru/post/947205/


All Articles