Skip to content

Commit 2c7d143

Browse files
committed
stefan get started edits
1 parent 74fad38 commit 2c7d143

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

articles/synapse-analytics/sql/get-started-azure-data-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ To use Azure Active Directory, you need to choose the needed authentication type
5656

5757
![AAD Authentication](./media/get-started-azure-data-studio/3-aad-auth.png)
5858

59-
This screenshot shows the **Connection Details** for **Windows Authentication**:
59+
The following screenshot shows the **Connection Details** for **Windows Authentication**:
6060

6161
![Windows Authentication](./media/get-started-azure-data-studio/3-windows-auth.png)
6262

63-
This screenshot shows the **Connection Details** using **SQL Login**:
63+
The following screenshot shows the **Connection Details** using **SQL Login**:
6464

6565
![SQL Login](./media/get-started-azure-data-studio/2-database-details.png)
6666

articles/synapse-analytics/sql/get-started-connect-sqlcmd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ C:\>sqlcmd -S MySqlDw.database.windows.net -d Adventure_Works -G -I
7474

7575
### Use SQL pool
7676

77-
After connection, you can issue any supported Transact-SQL statements against the instance. In this example, queries are submitted in interactive mode:
77+
After connection, you can issue any supported [Transact-SQL](/sql/t-sql/language-reference?toc=/azure/synapse-analytics/toc.json&bc=/azure/synapse-analytics/breadcrumb/toc.json&view=azure-sqldw-latest) (T-SQL) statements against the instance. In this example, queries are submitted in interactive mode:
7878

7979
```sql
8080
C:\>sqlcmd -S MySqlDw.database.windows.net -d Adventure_Works -U myuser -P myP@ssword -I

articles/synapse-analytics/sql/get-started-power-bi-professional.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ms.reviewer: jrasnick, carlrab
2222
> - [sqlcmd](../sql/get-started-connect-sqlcmd.md)
2323
> - [SSMS](get-started-ssms.md)
2424
25-
In this tutorial, we will go through steps how to connect Power BI desktop to SQL on-demand (preview).
25+
In this tutorial, we will go through the steps for connecting Power BI desktop to SQL on-demand (preview).
2626

2727
## Prerequisites
2828

@@ -42,7 +42,7 @@ Parameters:
4242
| SQL on-demand service endpoint address | Will be used as server name |
4343
| SQL on-demand service endpoint region | Will be used to determine what storage will we use in samples |
4444
| Username and password for endpoint access | Will be used to access endpoint |
45-
| Database you will use to create views | This database will be used as starting point in samples |
45+
| Database you'll use to create views | This database will be used as starting point in samples |
4646

4747
## First-time setup
4848

@@ -53,23 +53,23 @@ There are two steps prior to using samples:
5353

5454
### Create database
5555

56-
Since you will use demo environment, you should create your own database for demo purposes. Database is needed to create views in it. You will use this database in some of sample queries in this documentation.
56+
For this getting started article, you should create your own database to utilize as a demo. A database is needed for views creation. You'll use this database in some of the sample queries within this documentation.
5757

5858
> [!NOTE]
59-
> Note that databases are used only for view metadata, not for actual data.
59+
> Databases are used only for viewing metadata, not for actual data.
6060
>
61-
> Write down database name you use, you will need it later on.
61+
> Write down the database name you're using, you'll need it later on.
6262
6363
```sql
6464
DROP DATABASE IF EXISTS demo;
6565
```
6666

6767
### Create credentials
6868

69-
We need to create credential before you can run queries. This credential will be used by SQL on-demand service to access files in storage.
69+
We need to create credentials before you can run queries. The credentials will be used by SQL on-demand service to access files in storage.
7070

7171
> [!NOTE]
72-
> Note that you need to create credential for access to the storage account. Although SQL on-demand can access storages from different regions, having storage and Azure Synapse workspace in same region will provide better performance experience.
72+
> You need to create credential for access to the storage account. Although SQL on-demand can access storage from different regions, having storage and Azure Synapse workspace in the same region will provide better performance experience.
7373
7474
**Code snippet on how to create credentials for Census data containers**, run:
7575

@@ -88,17 +88,17 @@ GO
8888

8989
## Creating Power BI desktop report
9090

91-
Open Power BI desktop application and select "Get data" option.
91+
Open Power BI desktop application and select **Get data** option.
9292
![Open Power BI desktop application and select get data.](./media/get-started-power-bi-professional/step-0-open-powerbi.png)
9393

9494
### Step 1 - Select data source
9595

96-
Select "Azure" in the menu and then "Azure SQL Database".
96+
Select **Azure** in the menu and then **Azure SQL Database**.
9797
![Select data source.](./media/get-started-power-bi-professional/step-1-select-data-source.png)
9898

9999
### Step 2 - Select database
100100

101-
Write URL for the database and name of the database where view is residing.
101+
Write the URL for the database and the name of the database where the view resides.
102102
![Select database on the endpoint.](./media/get-started-power-bi-professional/step-2-db.png)
103103

104104
## Next steps

0 commit comments

Comments
 (0)