Daniel Calbimonte

Working with Visual Studio and SQL Azure databases

September 21, 2015 by

Introduction

In this chapter, we will work with Visual Studio to connect to SQL Databases in Azure.

The first part of this chapter will be to create a Database in the Azure Portal and the second part will be to connect in Visual Studio and create some Database Objects.

Requirements

  • An Azure subscription.
  • A local machine with Windows and Visual Studio installed. In this example, the Visual Studio 2015 was used.

Getting started

Let’s start opening the Azure New Portal

  1. To create a new SQL database, in the new Portal Press Browse All.


    Figure 1. The Azure Portal

  2. Go to SQL databases and press the Add icon to add a new SQL database.


    Figure 2. The SQL databases

  3. Add a name for the SQL Database and click on the Pricing tier option.


    Figure 3. The sql database options

  4. If you like your money use a database cheaper. Specially if you are testing like me. The more GB, the more expensive it is. I will use the Basic Pricing. Verify your company needs and the space required for your company in order to chose the best option. The basic are usually the cheapest options, the standard is the intermediate option and the premium the most expensive option.


    Figure 4. The prices for databases

  5. Select the server option to select an existing server or to create a new one. In this example, we will create a new Server.


    Figure 5. Server options

  6. Select the option to create a new server.


    Figure 6. New server

  7. Specify the server name, the login and password for the server. You will also need to verify the password. The location will allow you to specify where do you want to store the server.


    Figure 7. Server admin

  8. In the portal, you will see a notification and a message that the database is being created.


    Figure 8. Database Creation

  9. If everything is OK, a database will be created. The complete name is the Server Name. You can group the resources and assign your database to a group. The last version of groups is the V12.

    You can connect from other application with the information displayed in the Show database connection strings.


    Figure 9. The SQL Database characteristics

  10. The pricing tier is the Basic S0. The DTU is the Database Throughput Unit. It is used to measure the performance. For example, a machine with 10 DTUs is 10 times more powerful in performance than a machine of 1 DTU.


    Figure 10. The pricing tier

  11. The Visual Studio

    We created a SQL Database in Azure, now we will connect with Azure.

  12. Press the Connect to Azure option.


    Figure 11. Visual Studio

  13. Specify the email address associated with your Azure Subscription and press continue.


    Figure 12. Connection to Visual Studio

  14. Click on the Server Explorer to verify the existing Azure objects


    Figure 13. The Server Explorer

  15. You will be able to see the Azure icon associated with the subscription. Expand it and expand the SQL Databases.


    Figure 14. Connection to Azure

  16. Right click on the databases created in steps 1 to 10, and select Open in SQL Server Object Explorer. With this option, you will be able to see the database objects in Azure.


    Figure 15. The SQL Server Object Explorer

  17. You will receive a request to include the IP address in the firewall rules. With this option you will be able to access to the Azure Database. Press the Add Firewall Rule button. Now your IP Address is enabled.


    Figure 16. Adding Firewall Rule

  18. Now, connect to SQL Server using the credentials specified on step 7.


    Figure 17. Database credentials

  19. You are now connected to Azure. Expand the database and you will be able to see the Tables, Views, synonyms and the Programmability section to create stored procedures, functions.


    Figure 18. The database objects

  20. To create a new table select the tables folder and press the Add New Table option.


    Figure 19. Adding new tables

  21. Add some columns and define the datatypes for your table. In this example we are adding a Name a Lastname, the salary and the Id. The name and lastname are characters and the Id and Salary are integers.


    Figure 20. The Table Columns and data types

  22. As you can see, you can design the table and see the T-SQL script also. This is very useful if you want to edit the T-SQL directly or if you want to learn T-SQL. Change the table name of the table to employees.


    Figure 21. The T-SQL code

  23. Press Update to update the table in Azure. The script will be executed in the Azure database to create the new table named dbo.employees.


    Figure 22. The Update option

  24. You will receive a Preview Database Updates to confim the update. Press the Update Database.

    Figure 23. Preview Database Update

  25. The details of the execution will be displayed. The script will be created and executed in Azure. If there are failures, the windows below will show where the execution failed.


    Figure 24.The Data Tools Operations

  26. In the SQL Server Object Explorer, you will be able to see the table dbo.employees created.


    Figure 25. The table created

  27. To view the data of the table, right click on the table and select View Data.


    Figure 26. View Data

  28. Write names, lastnames, salaries, ids. Try to add data similar to the following picture:


    Figure 27. Adding data to the table

  29. To create a view related to the table dbo.Employees, right click on the Views and select Add New view.


    Figure 28. New View

  30. We will name the view v_employees_high_salary and the view will show all the employees from the employees table whose salary is higher than 4000.


    Figure 29. T-SQL code to create a new view

  31. Repeat the steps 22 to 24 to update the view in Azure. Once you create the view, go to the SQL Server Explorer, select the database and expland the Views folder to see the new folder created. To verify the data right click on the view and select View data.


  32. Figure 30. Checking the View Data

  33. If everything is OK you will see the Clint Eastwood information. Because his salary is higher than 4000 USD. John Wayne salary is lower, then his data is not displayed. As you can see, working with Azure using Visual Studio is a straightforward task.


    Figure 31. The View Data filtered from the table

Conclusion

In this article, we showed how to create tables in SQL Azure and views using Visual Studio. As you can see, the process is very simple. In later chapters, we will learn more.

Daniel Calbimonte
Latest posts by Daniel Calbimonte (see all)
SQL Azure

About Daniel Calbimonte

Daniel Calbimonte is a Microsoft Most Valuable Professional, Microsoft Certified Trainer and Microsoft Certified IT Professional for SQL Server. He is an accomplished SSIS author, teacher at IT Academies and has over 13 years of experience working with different databases. He has worked for the government, oil companies, web sites, magazines and universities around the world. Daniel also regularly speaks at SQL Servers conferences and blogs. He writes SQL Server training materials for certification exams. He also helps with translating SQLShack articles to Spanish View all posts by Daniel Calbimonte

168 Views