Daniel Calbimonte

How to work with Visual Studio and VM databases in Azure

September 24, 2015 by

Introduction

In this new article, we will use Visual Studio to connect to a SQL Server Database Installed in a Virtual Machine in Azure.

Visual Studio is one of the most popular development tools in the world and connecting to Azure with Visual Studio is a very common need.

We will modify an existing SQL Server table in Azure from Visual Studio. Later we will create a stored procedure and finally, we will create an inline table-valued function.

Requirements

Getting started

  1. In the Azure portal, select Browse All➜Virtual machines and select the Virtual Machine with SQL Server installed.


    Figure 1. Virtual Machines in Azure

  2. Copy the Machine name which is also the SQL Server name (if you are using the default instance).


    Figure 2. The Server Name in Azure

  3. Click on Server Explorer and in Data Connection, select Add Connection.


    Figure 3. Adding a new connection

  4. Use the server name of the step 2, unless the SQL Server instance is not a default instance of SQL Server and specify the SQL Server Authentication user name and password. Finally, write the Database name. In this example, we will use the AdventureWorks2014 database.


    Figure 4. Connection information

  5. In order to see the connection, press the refresh button and you will be able to see the new connection


    Figure 5. Refreshing connection

  6. To view the data of the table, right click on it and select Show Table Data.


    Figure 6. Showing Table Data

  7. You will be able to see the table data.


    Figure 7. The Department information

  8. To insert new data, go to the last row and write new data. In this example, we are adding the IT department.


    Figure 8. Adding data to the table

  9. In order to verify that the new data was added, connect to your VM in Azure.


    Figure 9. Azure VM connection

  10. Open the SQL Server Management Studio


    Figure 10. SQL Server Management Studio

  11. Verify that the table has the new data.


    Figure 11. Reviewing the table data

  12. You will notice that the new row created on step 8 was successfully added.


    Figure 12. Verification of the insert in the VM Azure table

  13. Now, we are going to create a stored procedure with a parameter. In Visual Studio, right click on Stored Procedures and select Add New Stored Procedure.


    Figure 13. Adding a new stored procedure

  14. By default, you will have this code:


    Figure 14. Stored procedure code by default

  15. In this example, we will create a stored procedure that will show the department information if we specify the name of the department. The @name will be the parameter with is the name of the department. The code will be like this:

    The stored procedure name is departmentinfo and the input parameter is name. It shows all the information of the department table of the database Adventureworks where the name is equal to the parameter. Once the stored procedure code is done, press update.


    Figure 15. Stored procedure with parameter

  16. In the Previous Database Updates window, press the update database button.


    Figure 16. Update database

  17. You can verify in the SSMS of the Azure VM that the stored procedure was created successfully.


    Figure 17. The stored procedure created.

  18. To execute the stored procedure, on Visual Studio, right click on the stored procedure and select Execute.


    Figure 18. Executing a stored procedure

  19. In the value section specify a value. Check the step 8 to verify valid values. The stored procedure receives the Department name and returns the information of the department. In this example, we are inserting the IT name. Press OK.


    Figure 19. Parameters for the stored procedure.

  20. As you can see, the stored procedure was executed successfully. You can see the T-SQL code generated and the results of the stored procedure. It is showing the information related to the department name specified as input.


    Figure 20. The stored procedure execution results

  21. Finally, let’s create an Azure function using Visual Studio. We will use the Employee table that contains the following information:


    Figure 21. The table that will be used to create the function.

    The table contains Employees information. We will send the the function the LoginID and we want to receive the age of the employee based on the birthdate. For example, the login Adventure-works\ken0 has 46 years.

  22. To create a Functions right click on Functions in Visual Studio.There are several types of functions:

    • Inline Functions: They return a table. It is like a parameterized view. We will use this type of functions today.
    • Table-valued Function: They also return a table, but they allow a more powerful programming logic that the other functions.
    • Scalar-valued Function: They return a scalar value.


    Figure 22. The types of functions

  23. Write the following code to create the function:

    The Function name is returnage. It receives de loginId from the Employee table and the functions calculates the age of the employee with using the BirthDate.

  24. Once your code is done, press Update and repeat the step 16.


    Figure 23. Updating the function

  25. To verify that the function was created press the refresh icon. You will be able to see the returnage function.


    Figure 24. The Function created

  26. If you expand the function, you will be able to see that the loginID is the input parameter and the age the column returned.


    Figure 25. Input function parameter

  27. To test the function, right click on the function and press Execute.


    Figure 26. Function execution

  28. Write a LoginId, check the figure 21 for valid values and press OK.


    Figure 27. The function parameter specified for execution

  29. You will be able to see the function execution T-SQL code and the result. The LoginID adventure-works\roberto0 has the age of 41 years.


    Figure 28. The function results

  30. Conclusion

    Visual Studio is a great and easy to use tool to program. In this article we show how simple is to connect to a VM machine in Azure and create SQL Server stored procedures, functions and to update the information.

    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