Yesterday (3rd of April), a new version of Azure SDK (version 2.3) was released. Being an Azure Fanboy ๐ (and not to mention serious Azure developer) I went ahead and downloaded this new SDK and converted my cloud services project to make use of this latest version of SDK.
While doing development, I needed to reset my development storage account. Obviously, I fired up Azure SDK Command Prompt and executed โDSInit /forceCreateโ command (after all I have been using this for ages now), but to my surprise I was greeted with โFile Not Foundโ error.
With SDK 2.3, Azure SDK team got rid of โDSInit.exeโ application and instead the new application for Storage Emulator is โWAStorageEmulator.exeโ which can be found in โC:\Program Files (x86)\Microsoft SDKs\Windows Azure\Storage Emulatorโ. Another thing the team did was that they got rid of the user interface for the storage emulator and all we have now is a command line interface.
So if you want to reinitialize the Storage Emulator, open command prompt (no admin privileges needed) and run the following command there:
WAStorageEmulator init -forcecreate
This will delete the existing database and create a new database for you and you will get a clean local storage emulator. When running this command, please make sure that the storage emulator is not running.
However, the goodness doesnโt stop there :). Letโs say you want to only delete tables from local storage emulator. Well, what do you know โ youโre in luck! Now it is possible to clear only certain storage components of local storage emulator without having to go through the process of recreating the database.
To remove just tables, this is the command you would need to run:
WAStorageEmulator clear table
To remove just blob containers, this is the command you would need to run:
WAStorageEmulator clear blob
To remove just queues, this is the command you would need to run:
WAStorageEmulator clear queue
To remove all tables, blob containers and queues, this is the command you would need to run:
WAStorageEmulator clear all
Note: You have to specify โallโ parameter. You can’t omit it.
Other commands available to you are:
Start: Starts the storage emulator.
Stop: Stops the storage emulator.
Status: Gets current status of the emulator.
Hope this helps!