You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/azure-data-studio/quickstart-sql-dw.md
+25-30Lines changed: 25 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,24 @@
1
1
---
2
2
title: Connect and query with Azure Synapse Analytics
3
-
description: This quickstart shows how to use Azure Data Studio to connect to using dedicated SQL pool in Azure Synapse Analytics and run a query.
3
+
description: This quickstart shows connecting to a dedicated SQL pool in Azure Synapse Analytics using Azure Data Studio.
4
4
ms.prod: azure-data-studio
5
5
ms.technology: azure-data-studio
6
-
ms.reviewer: "alayu, maghan, sstein"
7
6
ms.topic: quickstart
8
7
author: yualan
9
8
ms.author: alayu
9
+
ms.reviewer: alayu, jrasnick
10
10
ms.custom: seodec18; seo-lt-2019
11
-
ms.date: 09/24/2018
11
+
ms.date: 10/15/2020
12
12
---
13
13
14
14
# Quickstart: Use Azure Data Studio to connect and query data using dedicated SQL pool in Azure Synapse Analytics
15
15
16
-
This quickstart demonstrates how to use Azure Data Studio to connect to using dedicated SQL pool in Azure Synapse Analytics, and then use Transact-SQL statements to create, insert, and select data.
16
+
This quickstart shows connecting to a dedicated SQL pool in Azure Synapse Analytics using Azure Data Studio.
17
17
18
18
## Prerequisites
19
19
To complete this quickstart, you need Azure Data Studio, and a dedicated SQL pool in Azure Synapse Analytics.
20
20
21
-
-[Install Azure Data Studio](./download-azure-data-studio.md?view=sql-server-ver15).
21
+
-[Install Azure Data Studio](./download-azure-data-studio.md).
22
22
23
23
If you don't already have a dedicated SQL pool, see [Create a dedicated SQL pool](/azure/sql-data-warehouse/sql-data-warehouse-get-started-provision).
24
24
@@ -29,34 +29,31 @@ Remember the server name, and login credentials!
29
29
30
30
Use Azure Data Studio to establish a connection to your Azure Synapse Analytics server.
31
31
32
-
1. The first time you run Azure Data Studio the **Connection** page should open. If you don't see the **Connection** page, click**Add Connection**, or the **New Connection** icon in the **SERVERS** sidebar:
32
+
1. The first time you run Azure Data Studio the **Connection** page should open. If you don't see the **Connection** page, select**Add Connection**, or the **New Connection** icon in the **SERVERS** sidebar:
2. This article uses *SQL Login*, but *Windows Authentication* is also supported. Fill in the fields as follows using the server name, user name, and password for *your* Azure SQL server:
3. If your server doesn't have a firewall rule allowing Azure Data Studio to connect, the **Create new firewall rule** form opens. Complete the form to create a new firewall rule. For details, see [Firewall rules](/azure/sql-database/sql-database-firewall-configure).
1. Paste the following snippet into the query editor and click **Run**:
77
+
2. Paste the following snippet into the query editor and select **Run**:
85
78
86
79
> [!NOTE]
87
-
> You can append this to, or overwrite the previous query in the editor. Note that clicking**Run** executes only the query that is selected. If nothing is selected, clicking**Run** executes all queries in the editor.
80
+
> You can append this to, or overwrite the previous query in the editor. Note that selecting**Run** executes only the query that is selected. If nothing is selected, selecting**Run** executes all queries in the editor.
88
81
89
82
```sql
90
83
-- Create a new table called 'Customers' in schema 'dbo'
@@ -103,10 +96,12 @@ The query editor is still connected to the *master* database, but we want to cre
103
96
GO
104
97
```
105
98
99
+
:::image type="content" source="media/quickstart-sql-dw/create-table.png" alt-text="Create a table in the TutorialDB database":::
100
+
106
101
107
102
## Insert rows
108
103
109
-
1. Paste the following snippet into the query editor and click**Run**:
104
+
1. Paste the following snippet into the query editor and select**Run**:
110
105
111
106
```sql
112
107
-- Insert rows into table 'Customers'
@@ -118,25 +113,25 @@ The query editor is still connected to the *master* database, but we want to cre
:::image type="content" source="media/quickstart-sql-dw/view-results.png" alt-text="View the results":::
133
130
134
131
135
132
## Clean up resources
136
133
137
-
Other articles in this collection build upon this quickstart. If you plan to continue on to work with subsequent quickstarts, do not clean up the resources created in this quickstart. If you do not plan to continue, use the following steps to delete resources created by this quickstart in the Azure portal.
138
-
Clean up resources by deleting the resource groups you no longer need. For details, see [Clean up resources](/azure/sql-database/sql-database-get-started-portal#clean-up-resources).
139
-
134
+
If you don't plan to continue working with the sample databases created in this article, then [delete the resource group](/azure/azure/synapse-analytics/sql-data-warehouse/create-data-warehouse-portal#clean-up-resources).
0 commit comments