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).
Copy file name to clipboardExpand all lines: docs/linux/quickstart-install-connect-clouds.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ ms.assetid:
13
13
# Quickstart: Run SQL Server in the cloud
14
14
[!INCLUDE [SQL Server - Linux](../includes/applies-to-version/sql-linux.md)]
15
15
16
-
In this quickstart, you will install SQL Server on Red Hat Enterprise Linux (RHEL), SUSE Linux Enterprise Server (SLES), or Ubuntu in the cloud of your choice. Go to [Provision a Linux SQL Server virtual machine in the Azure portal](https://docs.microsoft.com/azure/virtual-machines/linux/sql/provision-sql-server-linux-virtual-machine?toc=/sql/toc/toc.json) to run SQL Server on Linux in Azure.
16
+
In this quickstart, you will install SQL Server on Red Hat Enterprise Linux (RHEL), SUSE Linux Enterprise Server (SLES), or Ubuntu in the cloud of your choice. Go to [Provision a Linux SQL Server virtual machine in the Azure portal](/azure/virtual-machines/linux/sql/provision-sql-server-linux-virtual-machine?toc=%252fsql%252ftoc%252ftoc.json) to run SQL Server on Linux in Azure.
17
17
18
18
> [!NOTE]
19
19
> If you choose to run a paid edition of SQL Server, then you need to bring your own license (BYOL).
@@ -56,4 +56,4 @@ In this quickstart, you will install SQL Server on Red Hat Enterprise Linux (RHE
56
56
* [Ubuntu](quickstart-install-connect-ubuntu.md)
57
57
1. Configure for remote connections:
58
58
* Go to the [Firewall Rules](https://console.cloud.google.com/networking/firewalls)
59
-
* Add an inbound rule to allow traffic on the port on which SQL Server listens (default tcp: 1433)
59
+
* Add an inbound rule to allow traffic on the port on which SQL Server listens (default tcp: 1433)
Copy file name to clipboardExpand all lines: docs/linux/quickstart-install-connect-docker.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,7 +127,7 @@ Before starting the following steps, make sure that you have selected your prefe
127
127
> [!NOTE]
128
128
> The password should follow the SQL Server default password policy, otherwise the container can not setup SQL server and will stop working. By default, the password must be at least 8 characters long and contain characters from three of the following four sets: Uppercase letters, Lowercase letters, Base 10 digits, and Symbols. You can examine the error log by executing the [docker logs](https://docs.docker.com/engine/reference/commandline/logs/) command.
129
129
>
130
-
> By default, this creates a container with the Developer edition of SQL Server 2017. The process for running production editions in containers is slightly different. For more information, see [Run production container images](sql-server-linux-configure-docker.md#production).
130
+
> By default, this creates a container with the Developer edition of SQL Server 2017. The process for running production editions in containers is slightly different. For more information, see [Run production container images](./sql-server-linux-docker-container-deployment.md#production).
131
131
132
132
The following table provides a description of the parameters in the previous `docker run` example:
133
133
@@ -166,7 +166,7 @@ Before starting the following steps, make sure that you have selected your prefe
4. If the **STATUS** column shows a status of **Up**, then SQL Server is running in the container and listening on the port specified in the **PORTS** column. If the **STATUS** column for your SQL Server container shows **Exited**, see the [Troubleshooting section of the configuration guide](sql-server-linux-configure-docker.md#troubleshooting).
169
+
4. If the **STATUS** column shows a status of **Up**, then SQL Server is running in the container and listening on the port specified in the **PORTS** column. If the **STATUS** column for your SQL Server container shows **Exited**, see the [Troubleshooting section of the configuration guide](./sql-server-linux-docker-container-troubleshooting.md).
170
170
171
171
The `-h` (host name) parameter as discussed above, changes the internal name of the container to a custom value. This is the name you'll see returned in the following Transact-SQL query:
172
172
@@ -218,7 +218,7 @@ Before starting the following steps, make sure that you have selected your prefe
218
218
> [!TIP]
219
219
> This quickstart uses the SQL Server 2019 Docker image. If you want to run the SQL Server 2017 image, see the [SQL Server 2017 version of this article](quickstart-install-connect-docker.md?view=sql-server-linux-2017#pullandrun2017).
220
220
221
-
The previous command pulls the SQL Server 2019 container image based on Ubuntu. To instead use container images based on RedHat, see [Run RHEL-based container images](sql-server-linux-configure-docker.md#rhel). To see all available images, see [the mssql-server-linux Docker hub page](https://hub.docker.com/_/microsoft-mssql-server).
221
+
The previous command pulls the SQL Server 2019 container image based on Ubuntu. To instead use container images based on RedHat, see [Run RHEL-based container images](./sql-server-linux-docker-container-deployment.md#rhel). To see all available images, see [the mssql-server-linux Docker hub page](https://hub.docker.com/_/microsoft-mssql-server).
222
222
223
223
::: zone pivot="cs1-bash"
224
224
For the bash commands in this article, `sudo` is used. On macOS, `sudo` might not be required. On Linux, if you do not want to use `sudo` to run Docker, you can configure a **docker** group and add users to that group. For more information, see [Post-installation steps for Linux](https://docs.docker.com/install/linux/linux-postinstall/).
@@ -495,7 +495,7 @@ The following steps use **sqlcmd** outside of your container to connect to SQL S
495
495
496
496
Other common tools to connect to SQL Server include:
497
497
498
-
-[Visual Studio Code](sql-server-linux-develop-use-vscode.md)
498
+
-[Visual Studio Code](../tools/visual-studio-code/sql-server-develop-use-vscode.md)
499
499
-[SQL Server Management Studio (SSMS) on Windows](sql-server-linux-manage-ssms.md)
500
500
-[Azure Data Studio](../azure-data-studio/what-is.md)
@@ -539,4 +539,4 @@ After you have tried using the SQL Server container image for Docker, you might
539
539
540
540
For a tutorial on how to restore database backup files into a container, see [Restore a SQL Server database in a Linux Docker container](tutorial-restore-backup-in-sql-server-container.md). Explore other scenarios, such as running [multiple containers](sql-server-linux-docker-container-deployment.md#multiple), [data persistence](sql-server-linux-docker-container-configure.md#persist), and [troubleshooting](sql-server-linux-docker-container-troubleshooting.md).
541
541
542
-
Also, check out the [mssql-docker GitHub repository](https://github.com/Microsoft/mssql-docker) for resources, feedback, and known issues.
542
+
Also, check out the [mssql-docker GitHub repository](https://github.com/Microsoft/mssql-docker) for resources, feedback, and known issues.
Copy file name to clipboardExpand all lines: docs/linux/quickstart-install-connect-red-hat.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ You must have a RHEL 7.3, 7.4, 7.5, 7.6, or 8.0 machine with **at least 2 GB** o
47
47
48
48
::: moniker-end
49
49
50
-
To install Red Hat Enterprise Linux on your own machine, go to [https://access.redhat.com/products/red-hat-enterprise-linux/evaluation](https://access.redhat.com/products/red-hat-enterprise-linux/evaluation). You can also create RHEL virtual machines in Azure. See [Create and Manage Linux VMs with the Azure CLI](https://docs.microsoft.com/azure/virtual-machines/linux/tutorial-manage-vm), and use `--image RHEL` in the call to `az vm create`.
50
+
To install Red Hat Enterprise Linux on your own machine, go to [https://access.redhat.com/products/red-hat-enterprise-linux/evaluation](https://access.redhat.com/products/red-hat-enterprise-linux/evaluation). You can also create RHEL virtual machines in Azure. See [Create and Manage Linux VMs with the Azure CLI](/azure/virtual-machines/linux/tutorial-manage-vm), and use `--image RHEL` in the call to `az vm create`.
51
51
52
52
If you have previously installed a CTP or RC release of SQL Server, you must first remove the old repository before following these steps. For more information, see [Configure Linux repositories for SQL Server 2017 and 2019](sql-server-linux-change-repo.md).
53
53
@@ -212,4 +212,4 @@ To create a database, you need to connect with a tool that can run Transact-SQL
212
212
source~/.bashrc
213
213
```
214
214
215
-
[!INCLUDE [Connect, create, and query data](../includes/sql-linux-quickstart-connect-query.md)]
215
+
[!INCLUDE [Connect, create, and query data](../includes/sql-linux-quickstart-connect-query.md)]
Copy file name to clipboardExpand all lines: docs/linux/quickstart-install-connect-suse.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,12 +48,12 @@ You must have a SLES v12 SP2, SP3, SP4 or SP5 machine with **at least 2 GB** of
48
48
49
49
::: moniker-end
50
50
51
-
To install SUSE Linux Enterprise Server on your own machine, go to [https://www.suse.com/products/server](https://www.suse.com/products/server). You can also create SLES virtual machines in Azure. See [Create and Manage Linux VMs with the Azure CLI](https://docs.microsoft.com/azure/virtual-machines/linux/tutorial-manage-vm), and use `--image SLES` in the call to `az vm create`.
51
+
To install SUSE Linux Enterprise Server on your own machine, go to [https://www.suse.com/products/server](https://www.suse.com/products/server). You can also create SLES virtual machines in Azure. See [Create and Manage Linux VMs with the Azure CLI](/azure/virtual-machines/linux/tutorial-manage-vm), and use `--image SLES` in the call to `az vm create`.
52
52
53
53
If you have previously installed a CTP or RC release of SQL Server, you must first remove the old repository before following these steps. For more information, see [Configure Linux repositories for SQL Server 2017 and 2019](sql-server-linux-change-repo.md).
54
54
55
55
> [!NOTE]
56
-
> At this time, the [Windows Subsystem for Linux](https://msdn.microsoft.com/commandline/wsl/about) for Windows 10 is not supported as an installation target.
56
+
> At this time, the [Windows Subsystem for Linux](/windows/wsl/about) for Windows 10 is not supported as an installation target.
57
57
58
58
For other system requirements, see [System requirements for SQL Server on Linux](sql-server-linux-setup.md#system).
59
59
@@ -204,4 +204,4 @@ To create a database, you need to connect with a tool that can run Transact-SQL
204
204
source~/.bashrc
205
205
```
206
206
207
-
[!INCLUDE [Connect, create, and query data](../includes/sql-linux-quickstart-connect-query.md)]
207
+
[!INCLUDE [Connect, create, and query data](../includes/sql-linux-quickstart-connect-query.md)]
0 commit comments