views:

210

answers:

3

Is there a way to view Azure Tables form SQL Server Management Studio or some similar tool?

A: 

Yes you can but with limitations. See this:

http://english.zachskylesowens.net/2009/08/18/connecting-to-sql-azure/
Randy Minder
+2  A: 
alwayslearning
+1  A: 

As Joannes mentioned, it's unclear whether you are looking to browse SQL Azure or Azure Table Storage.

If it's SQL Azure you're asking about, then it's an easy answer: Yes. Simply go to your SQL Azure account online and grab the server name (.database.windows.net), and use that from SQL Server Management Studio when connecting to your database. Specify your admin username and password, and you're off and running.

If you're talking about viewing Azure Table storage, there are a few tools floating around. The most current seems to be the Azure Storage Explorer on CodePlex. It'll let you view all of your Azure tables, and edit text blobs.

David Makogon