Visual Studio For Mac Open Sql Database

divinetree
5 min readJun 24, 2021

Download here

Then in vs code open the folder “src s2” and the “extension.ts” file and F5 — this will open a new vs code window — open a folder with your.sql files and it will create a t-sql model and report any errors. Turn Visual Studio into a powerful development environment for SQL Server, Azure SQL Database and Azure SQL Data Warehouse.

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.
  2. Rainbow Palette. Tip: Hover your mouse over the image see original image. Fx photo studio for mac. Ancient Canvas.
  3. Figure 1. The Azure Portal
  4. Go to SQL databases and press the Add icon to add a new SQL database.
  5. Figure 2. The SQL databases
  6. Add a name for the SQL Database and click on the Pricing tier option.
  7. Figure 3. The sql database options
  8. 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.
  9. Figure 4. The prices for databases
  10. Select the server option to select an existing server or to create a new one. In this example, we will create a new Server.
  11. Figure 5. Server options
  12. Select the option to create a new server.
  13. Figure 6. New server
  14. 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.
  15. Figure 7. Server admin
  16. In the portal, you will see a notification and a message that the database is being created.
  17. Figure 8. Database Creation
  18. 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.
  19. You can connect from other application with the information displayed in the Show database connection strings.
  20. Figure 9. The SQL Database characteristics
  21. 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.
  22. Figure 10. The pricing tier

The Visual Studio

  1. Press the Connect to Azure option.
  2. Figure 11. Visual Studio
  3. Specify the email address associated with your Azure Subscription and press continue.
  4. Figure 12. Connection to Visual Studio
  5. Click on the Server Explorer to verify the existing Azure objects
  6. Figure 13. The Server Explorer
  7. You will be able to see the Azure icon associated with the subscription. Expand it and expand the SQL Databases.
  8. Figure 14. Connection to Azure
  9. 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.
  10. Figure 15. The SQL Server Object Explorer
  11. 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.
  12. Figure 16. Adding Firewall Rule
  13. Now, connect to SQL Server using the credentials specified on step 7.
  14. Figure 17. Database credentials
  15. 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.
  16. Figure 18. The database objects
  17. To create a new table select the tables folder and press the Add New Table option.
  18. Figure 19. Adding new tables
  19. 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.
  20. Figure 20. The Table Columns and data types
  21. 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.
  22. 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.
  24. Figure 22. The Update option
  25. You will receive a Preview Database Updates to confim the update. Press the Update Database.
  26. Figure 23. Preview Database Update
  27. 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.
  28. Figure 24.The Data Tools Operations
  29. In the SQL Server Object Explorer, you will be able to see the table dbo.employees created.
  30. Figure 25. The table created
  31. To view the data of the table, right click on the table and select View Data.
  32. Figure 26. View Data
  33. Write names, lastnames, salaries, ids. Try to add data similar to the following picture:
  34. Figure 27. Adding data to the table
  35. To create a view related to the table dbo.Employees, right click on the Views and select Add New view.
  36. Figure 28. New View
  37. 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.
  38. Figure 29. T-SQL code to create a new view
  39. 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.
  40. 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

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

Visual Studio For Mac

Latest posts by Daniel Calbimonte (see all)

Visual Studio

  • TSQL history — September 3, 2019
  • SQL Server download guide — July 22, 2019
  • SQL intersect use in SQL Server — July 10, 2019

Visual Studio For Mac Download

Related posts:

Download here

--

--