Skip to content

Commit 272792f

Browse files
authored
Merge pull request #115328 from Kat-Campise/sql_articles_6
sql articles 6
2 parents d35a4f0 + 9fba32e commit 272792f

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

articles/synapse-analytics/quickstart-sql-on-demand.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Using SQL on-demand (preview)
2+
title: Use SQL on-demand (preview)
33
description: In this quickstart, you'll see and learn how easy is to query various types of files using SQL on-demand (preview).
44
services: synapse-analytics
55
author: azaricstefan
@@ -11,11 +11,11 @@ ms.author: v-stazar
1111
ms.reviewer: jrasnick
1212
---
1313

14-
# Quickstart: Using SQL on-demand
14+
# Quickstart: Use SQL on-demand
1515

1616
Synapse SQL on-demand (preview) is a serverless query service that enables you to run SQL queries on files placed in Azure Storage. In this quickstart, you'll learn how to query various types of files using SQL on-demand. Supported formats are listed in [OPENROWSET](sql/develop-openrowset.md).
1717

18-
This quickstart shows querying for CSV, Apache Parquet, and JSON files.
18+
This quickstart shows querying: CSV, Apache Parquet, and JSON files.
1919

2020
## Prerequisites
2121

@@ -25,7 +25,7 @@ Choose a SQL client to issue queries:
2525
- [Azure Data Studio](sql/get-started-azure-data-studio.md) is a client tool that enables you to run SQL queries and notebooks on your On-demand database.
2626
- [SQL Server Management Studio](sql/get-started-ssms.md) is a client tool that enables you to run SQL queries on your On-demand database.
2727

28-
Parameters for quickstart:
28+
Parameters for this quickstart:
2929

3030
| Parameter | Description |
3131
| ----------------------------------------- | ------------------------------------------------------------- |
@@ -84,7 +84,7 @@ SECRET = 'sv=2018-03-28&ss=bf&srt=sco&sp=rl&st=2019-10-14T12%3A10%3A25Z&se=2061-
8484
GO
8585
```
8686

87-
## Querying CSV files
87+
## Query CSV files
8888

8989
The following image is a preview of the file to be queried:
9090

@@ -113,7 +113,7 @@ WHERE
113113
You can specify schema at query compilation time.
114114
For more examples, see how to [query CSV file](sql/query-single-csv-file.md).
115115

116-
## Querying parquet files
116+
## Query Parquet files
117117

118118
The following sample shows the automatic schema inference capabilities for querying Parquet files. It returns the number of rows in September of 2017 without specifying schema.
119119

@@ -131,7 +131,7 @@ FROM OPENROWSET
131131

132132
Find more information about [querying parquet files](sql/query-parquet-files.md).
133133

134-
## Querying JSON files
134+
## Query JSON files
135135

136136
### JSON sample file
137137

@@ -153,7 +153,7 @@ Files are stored in *json* container, folder *books*, and contain single book en
153153
}
154154
```
155155

156-
### Querying JSON files
156+
### Query JSON files
157157

158158
The following query shows how to use [JSON_VALUE](/sql/t-sql/functions/json-value-transact-sql?toc=/azure/synapse-analytics/toc.json&bc=/azure/synapse-analytics/breadcrumb/toc.json&view=azure-sqldw-latest) to retrieve scalar values (title, publisher) from a book with the title *Probabilistic and Statistical Methods in Cryptology, An Introduction by Selected articles*:
159159

articles/synapse-analytics/sql/create-external-table-as-select.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.reviewer: jrasnick, carlrab
1313

1414
# Store query results to storage using SQL on-demand (preview) using Azure Synapse Analytics
1515

16-
In this article, you'll learn how to store query results to the storage using SQL On-demand (preview).
16+
In this article, you'll learn how to store query results to storage using SQL On-demand (preview).
1717

1818
## Prerequisites
1919

@@ -24,7 +24,7 @@ Your first step is to review the articles below and make sure you've met the pre
2424

2525
## Create external table as select
2626

27-
You can use CREATE EXTERNAL TABLE AS SELECT (CETAS) statement to store the query results to the storage.
27+
You can use the CREATE EXTERNAL TABLE AS SELECT (CETAS) statement to store the query results to storage.
2828

2929
> [!NOTE]
3030
> Change the first line in the query, i.e., [mydbname], so you're using the database you created. If you have not created a database, please read [First-time setup](query-data-storage.md#first-time-setup). You need to change LOCATION for MyDataSource external data source to point to location you have write permission for.
@@ -69,9 +69,9 @@ FROM
6969

7070
```
7171

72-
## Use a external table created
72+
## Use the external table
7373

74-
You can use external table created through CETAS like a regular external table.
74+
You can use the external table created through CETAS like a regular external table.
7575

7676
> [!NOTE]
7777
> Change the first line in the query, i.e., [mydbname], so you're using the database you created. If you have not created a database, please read [First-time setup](query-data-storage.md#first-time-setup).
@@ -91,4 +91,4 @@ ORDER BY
9191

9292
## Next steps
9393

94-
For information on how to query different file types, refer to the [Query single CSV file](query-single-csv-file.md), [Query Parquet files](query-parquet-files.md), and [Query JSON files](query-json-files.md) articles.
94+
For more information on how to query different file types, refer to the [Query single CSV file](query-single-csv-file.md), [Query Parquet files](query-parquet-files.md), and [Query JSON files](query-json-files.md) articles.

0 commit comments

Comments
 (0)