Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to manage windows azure SQL Database [closed]

I am new in windows azure SQL Database. I just purchase it but there is no desktop tool I have found for managing the database.

They provide the online silverlight interface but it is hard to maintain and very time consuming.

Is there any better solution for this?

like image 737
Jennifer D'souza Avatar asked Jun 06 '26 12:06

Jennifer D'souza


2 Answers

You can use the full SQL Server Management Studio to do the majority of the tasks.

You can download the tool here:

http://www.microsoft.com/en-gb/download/details.aspx?id=29062

To connect to your Azure SQL database, you need to use the fully qualified server name to connect, e.g.

yourservername.database.windows.net

Also, be aware that when you connect to an Azure SQL DB, you don't get all the same features in the tool as you do for the on-premise SQL Server. For example, you cannot manage replication.

In some cases this is because the feature is not supported in Azure. In other cases it is just that the management tool has no UI. In this case you have to resort to learning the T-SQL. ALTER TABLE etc.

like image 105
Mike Goodwin Avatar answered Jun 08 '26 01:06

Mike Goodwin


Online portal has big limitation - it's impossible to add data into the tabes that contains Guid as column type.

I have Visual Studio 2012 and I have found that "SQL Server Object Explorer" is not so bad for managing data/schemes for Azure Databases - since it's already installed and it's pretty simple to run it from VS during development. I am not paranoic, but I trust Visual Studio more than other 3rd party online tools and services, so I am not afraid to set azure credentials in VS.

You can connect to your Azure database as to standalone one - just check server addr on the online portal, it should be something like "servername.database.windows.net".

like image 35
Ivan Sokalskiy Avatar answered Jun 08 '26 02:06

Ivan Sokalskiy