full_prog_full
full_prog_full

Reputation: 1189

How to delete all Azure emulator databases on local PC?

I'm new to Azure and .NET. I messed up a the database linked to a sample project. Now when I load a new version (of the same sample MVC web-app project) into VS2013, it points to the same old database on my PC (instead of creating a new one).

Where does VS2013 / Azure SDK emulator store local db instances so that I can delete them?

Upvotes: 2

Views: 912

Answers (1)

Gaurav Mantri
Gaurav Mantri

Reputation: 136196

As you may know that storage emulator uses SQL Server LocalDB for data storage by default and for each version of SDK a new database is created. What you can do is connect to LocalDB instance using Sql Server Management Studio as shown in the screenshot below.

enter image description here

Once you're connected, you will see all the databases (they would start with WAStorageEmulator). You can then delete the databases from there.

enter image description here

Upvotes: 3

Related Questions