Skip to content

Commit e8951b5

Browse files
committed
[ADS] Updated images and queries
1 parent 7007df2 commit e8951b5

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed
86 KB
Loading
91.9 KB
Loading
-22.9 KB
Loading
78.5 KB
Loading

docs/azure-data-studio/quickstart-sql-dw.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Connect and query with Azure Synapse Analytics
33
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.
44
ms.prod: azure-data-studio
55
ms.technology: azure-data-studio
6-
ms.reviewer: "alayu, maghan, sstein"
76
ms.topic: quickstart
87
author: yualan
98
ms.author: alayu
9+
ms.reviewer: alayu, jrasnick
1010
ms.custom: seodec18; seo-lt-2019
11-
ms.date: 10/12/2020
11+
ms.date: 10/15/2020
1212
---
1313

1414
# Quickstart: Use Azure Data Studio to connect and query data using dedicated SQL pool in Azure Synapse Analytics
@@ -37,20 +37,16 @@ Use Azure Data Studio to establish a connection to your Azure Synapse Analytics
3737

3838
| Setting | Suggested value | Description |
3939
|--------------|-----------------|-------------|
40-
| **Server name** | The fully qualified server name | The name should be something like this: **sqldwsample.database.windows.net** |
40+
| **Server name** | The fully qualified server name | The name should be something like this: **sqlpoolservername.database.windows.net** |
4141
| **Authentication** | SQL Login| SQL Authentication is used in this tutorial. |
4242
| **User name** | The server admin account | This is the account that you specified when you created the server. |
4343
| **Password (SQL Login)** | The password for your server admin account | This is the password that you specified when you created the server. |
4444
| **Save Password?** | Yes or No | Select Yes if you do not want to enter the password each time. |
4545
| **Database name** | *leave blank* | The name of the database to which to connect. |
4646
| **Server Group** | Select <Default> | If you created a server group, you can set to a specific server group. |
4747

48-
![New Connection Icon](media/quickstart-sql-dw/new-connection-screen.png)
49-
5048
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).
5149

52-
![New firewall rule](media/quickstart-sql-dw/firewall.png)
53-
5450
4. After successfully connecting your server opens in the *Servers* sidebar.
5551

5652
## Create the tutorial dedicated SQL pool
@@ -78,10 +74,7 @@ The query editor is still connected to the *master* database, but we want to cre
7874

7975
1. Change the connection context to **TutorialDB**:
8076

81-
![Change context](media/quickstart-sql-database/change-context.png)
82-
83-
84-
1. Paste the following snippet into the query editor and click **Run**:
77+
2. Paste the following snippet into the query editor and click **Run**:
8578

8679
> [!NOTE]
8780
> 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.
@@ -103,6 +96,9 @@ The query editor is still connected to the *master* database, but we want to cre
10396
GO
10497
```
10598

99+
:::image type="content" source="media/quickstart-sql-dw/create-table.png" alt-text="Create a table in the TutorialDB database":::
100+
101+
106102
## Insert rows
107103

108104
1. Paste the following snippet into the query editor and click **Run**:
@@ -117,6 +113,8 @@ The query editor is still connected to the *master* database, but we want to cre
117113
SELECT 4, N'Janet', N'United States', N'[email protected]'
118114
```
119115

116+
:::image type="content" source="media/quickstart-sql-dw/create-rows.png" alt-text="Create rows in the table":::
117+
120118
## View the result
121119

122120
1. Paste the following snippet into the query editor and click **Run**:
@@ -128,7 +126,7 @@ The query editor is still connected to the *master* database, but we want to cre
128126

129127
2. The results of the query are displayed:
130128

131-
![Select results](media/quickstart-sql-dw/select-results.png)
129+
:::image type="content" source="media/quickstart-sql-dw/view-results.png" alt-text="View the results":::
132130

133131

134132
## Clean up resources

0 commit comments

Comments
 (0)