Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Azure database using SQL Server Management Studio

I've been trying to work out whether it's possible to manage (i.e. add tables, modify them, create stored procedures) a SQL Azure database using some kind of GUI like SSMS and I keep coming up against different answers.

I found a post from the end of 2009 saying that it would be supported in SSMS but I'm not sure if that includes the Express version? Does anybody know what the most recent update of the express version is and whether it supports it?

I think I'm right in saying that it can't be done in Visual Web Developer 2010 (and I can't afford the full fat VS2010).

I'm prepared to consider alternatives though if anybody knows any full features GUI tools that work with SQL azure and I don't mind paying for a commercial license if it's not too expensive.

Thanks.

like image 324
jonhobbs Avatar asked Jan 14 '11 15:01

jonhobbs


2 Answers

Yes, SQL Server 2008 R2's Management Studio does support working with SQL Azure databases.

See:

  • Getting Started with SQL Azure Development
like image 94
marc_s Avatar answered Oct 20 '22 13:10

marc_s


There are a couple of options 1) You can use SSMS (get the free version by downloading SQL Express v2008 or greater) with advanced services. This will give you SSMS. You can then connect to SQL Azure using SSMS. However - there is a limited set of functionality available via this tool. 2) You can use SSDT (stand-alone for free) or from within VS2010 SP1 or greater. Again, you can connect to SQL Azure, but there are some restrictions on what you can do.

I am using the SQL Express on AWS RDS (free usage tier) myself lately (and connecting via SSMS or SSDT). I prefer their implementation of SQL Server in the cloud to Microsoft's implementation of SQL Azure.

like image 23
Lynn Langit Avatar answered Oct 20 '22 14:10

Lynn Langit