Book Image

Learning Microsoft Azure

By : Geoff Webber Cross, Geoff Webber-Cross
Book Image

Learning Microsoft Azure

By: Geoff Webber Cross, Geoff Webber-Cross

Overview of this book

Table of Contents (19 chapters)
Learning Microsoft Azure
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Managing SQL Azure Servers and databases


Although we've just built our database using EF Code First Migrations, we still need to be able to view and sometimes modify our data and also perform activities such as adding users or creating federations.

To do this, we have a number of tools available:

  • The SQL management portal

  • SQL Server Management Studio (SSMS)

  • Visual Studio SQL Server Object Explorer

  • The PowerShell console

Managing a database through the portal

We're going to take a look at managing a database through the management portal:

  1. In the database workspace, select the database we just created and click on MANAGE on the bottom toolbar:

  2. We should see an alert appear, asking if we want to add our machine's public IP address to the firewall list:

  3. Click on YES and YES again when it asks if you want to manage the database:

  4. If nothing happens, check that the popup is not blocked.

  5. We should now see a login screen for the database, so enter the SA details we noted earlier and click on Log on:

  6. Once we...