Skip to content

Commit 226de0e

Browse files
Merge pull request #286811 from whhender/synapse-freshness-sept-2024
Synapse freshness sept 2024
2 parents de47439 + 34b09c8 commit 226de0e

File tree

2 files changed

+50
-49
lines changed

2 files changed

+50
-49
lines changed

articles/synapse-analytics/get-started-analyze-sql-on-demand.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.reviewer: whhender, wiassaf
77
ms.service: azure-synapse-analytics
88
ms.subservice: sql
99
ms.topic: tutorial
10-
ms.date: 02/15/2023
10+
ms.date: 09/16/2024
1111
---
1212

1313
# Analyze data with a serverless SQL pool
@@ -18,16 +18,16 @@ In this tutorial, you'll learn how to analyze data with serverless SQL pool.
1818

1919
Serverless SQL pools let you use SQL without having to reserve capacity. Billing for a serverless SQL pool is based on the amount of data processed to run the query and not the number of nodes used to run the query.
2020

21-
Every workspace comes with a pre-configured serverless SQL pool called **Built-in**.
21+
Every workspace comes with a preconfigured serverless SQL pool called **Built-in**.
2222

2323
## Analyze NYC Taxi data with a serverless SQL pool
2424

2525
> [!NOTE]
2626
> Make sure you have [placed the sample data into the primary storage account](get-started-create-workspace.md#place-sample-data-into-the-primary-storage-account)
2727
28-
1. In Synapse Studio, go to the **Develop** hub
28+
1. In the Synapse Studio, go to the **Develop** hub
2929
1. Create a new SQL script.
30-
1. Paste the following code into the script.
30+
1. Paste the following code into the script. (Update `contosolake` to the name of your storage account and `users` with the name of your container.)
3131

3232
```sql
3333
SELECT
@@ -38,7 +38,8 @@ Every workspace comes with a pre-configured serverless SQL pool called **Built-i
3838
FORMAT='PARQUET'
3939
) AS [result]
4040
```
41-
1. Select **Run**.
41+
42+
1. Select **Run**.
4243

4344
Data exploration is just a simplified scenario where you can understand the basic characteristics of your data. Learn more about data exploration and analysis in this [tutorial](sql/tutorial-data-analyst.md).
4445

@@ -51,23 +52,23 @@ However, as you continue data exploration, you might want to create some utility
5152
- Database users with the permissions to access some data sources or database objects.
5253
- Utility views, procedures, and functions that you can use in the queries.
5354
54-
1. Use the `master` database to create a separate database for custom database objects. Custom database objects, cannot be created in the `master` database.
55+
1. Use the `master` database to create a separate database for custom database objects. Custom database objects can't be created in the `master` database.
5556

5657
```sql
5758
CREATE DATABASE DataExplorationDB
5859
COLLATE Latin1_General_100_BIN2_UTF8
5960
```
6061

6162
> [!IMPORTANT]
62-
> Use a collation with `_UTF8` suffix to ensure that UTF-8 text is properly converted to `VARCHAR` columns. `Latin1_General_100_BIN2_UTF8` provides the best performance in the queries that read data from Parquet files and Azure Cosmos DB containers. For more information on changing collations, refer to [Collation types supported for Synapse SQL](sql/reference-collation-types.md).
63+
> Use a collation with `_UTF8` suffix to ensure that UTF-8 text is properly converted to `VARCHAR` columns. `Latin1_General_100_BIN2_UTF8` provides the best performance in the queries that read data from Parquet files and Azure Cosmos DB containers. For more information on changing collations, see [Collation types supported for Synapse SQL](sql/reference-collation-types.md).
6364

6465
1. Switch the database context from `master` to `DataExplorationDB` using the following command. You can also use the UI control **use database** to switch your current database:
6566

6667
```sql
6768
USE DataExplorationDB
6869
```
6970

70-
1. From `DataExplorationDB`, create utility objects such as credentials and data sources.
71+
1. From `DataExplorationDB` create utility objects such as credentials and data sources.
7172

7273
```sql
7374
CREATE EXTERNAL DATA SOURCE ContosoLake

0 commit comments

Comments
 (0)