Skip to content

Commit c8d40a3

Browse files
committed
Pattern compliance
1 parent a390885 commit c8d40a3

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

articles/synapse-analytics/sql/tutorial-data-analyst.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ ms.reviewer: whhender
1515

1616
In this tutorial, you learn how to perform exploratory data analysis using existing open datasets, with no storage setup required. You combine different Azure Open Datasets using serverless SQL pool. You then visualize the results in Synapse Studio for Azure Synapse Analytics.
1717

18-
The `OPENROWSET(BULK...)` function allows you to access files in Azure Storage. `[OPENROWSET](develop-openrowset.md)` reads content of a remote data source, such as a file, and returns the content as a set of rows.
18+
In this tutorial, you:
19+
20+
> [!div class="checklist"]
21+
> * Access the built-in serverless SQL pool
22+
> * Access Azure Open Datasets to use tutorial data
23+
> * Perform basic data analysis using SQL
1924
2025
## Access the serverless SQL pool
2126

@@ -27,6 +32,8 @@ Every workspace comes with a preconfigured serverless SQL pool for you to use ca
2732

2833
You can use this script to explore your data without having to reserve SQL capacity.
2934

35+
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
36+
3037
## Access the tutorial data
3138

3239
All the data we use in this tutorial is housed in the storage account *azureopendatastorage*, which holds Azure Open Datasets for open use in tutorials like this one. You can run all the scripts as-is directly from your workspace as long as your workspace can access a public network.
@@ -41,6 +48,8 @@ This tutorial uses a dataset about [New York City (NYC) Taxi](https://azure.micr
4148
- Payment types
4249
- Driver-reported passenger counts
4350

51+
The `OPENROWSET(BULK...)` function allows you to access files in Azure Storage. `[OPENROWSET](develop-openrowset.md)` reads content of a remote data source, such as a file, and returns the content as a set of rows.
52+
4453
To get familiar with the NYC Taxi data, run the following query:
4554

4655
```sql
@@ -236,7 +245,7 @@ The results of the query indicate that the drop in the number of taxi rides occu
236245

237246
This tutorial has shown how a data analyst can quickly perform exploratory data analysis. You can combine different datasets by using serverless SQL pool and visualize the results by using Azure Synapse Studio.
238247

239-
## Next steps
248+
## Related content
240249

241250
To learn how to connect serverless SQL pool to Power BI Desktop and create reports, see [Connect serverless SQL pool to Power BI Desktop and create reports](tutorial-connect-power-bi-desktop.md).
242251

0 commit comments

Comments
 (0)