Skip to content

Commit 676cf8d

Browse files
committed
Fixing query aceleration ref
1 parent e5b968e commit 676cf8d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

articles/storage/blobs/data-lake-storage-query-acceleration-how-to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: normesta
55
ms.subservice: data-lake-storage-gen2
66
ms.service: storage
77
ms.topic: conceptual
8-
ms.date: 03/24/2020
8+
ms.date: 04/21/2020
99
ms.author: normesta
1010
ms.reviewer: jamsbak
1111
---

articles/storage/blobs/data-lake-storage-query-acceleration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: normesta
55
ms.topic: conceptual
66
ms.author: normesta
77
ms.reviewer: jamesbak
8-
ms.date: 03/31/2020
8+
ms.date: 04/21/2020
99
ms.service: storage
1010
ms.subservice: data-lake-storage-gen2
1111
---

articles/storage/blobs/query-acceleration-sql-reference.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: storage
66
author: normesta
77
ms.service: storage
88
ms.topic: conceptual
9-
ms.date: 03/25/2020
9+
ms.date: 04/21/2020
1010
ms.author: normesta
1111
ms.subservice: data-lake-storage-gen2
1212
ms.reviewer: ereilebr
@@ -104,7 +104,7 @@ Here's a few examples:
104104
|SUBSTRING|``SUBSTRING('123456789', 1, 5)``|``23456``|
105105
|TRIM|``TRIM(BOTH '123' FROM '1112211Microsoft22211122')``|``Microsoft``|
106106

107-
The [LIKE](https://docs.microsoft.com/sql/t-sql/language-elements/like-transact-sql?view=sql-server-ver15) function helps you to search for a pattern. Here's a few examples that use the [LIKE](https://docs.microsoft.com/sql/t-sql/language-elements/like-transact-sql?view=sql-server-ver15) function to search the data string ``abc,abd,cd\ntest,test2,test3\na_bc,xc%d^e,gh[i ``
107+
The [LIKE](https://docs.microsoft.com/sql/t-sql/language-elements/like-transact-sql?view=sql-server-ver15) function helps you to search for a pattern. Here's a few examples that use the [LIKE](https://docs.microsoft.com/sql/t-sql/language-elements/like-transact-sql?view=sql-server-ver15) function to search the data string ``abc,abd,cd\ntest,test2,test3\na_bc,xc%d^e,gh[i ``.
108108

109109
|Query|Example|
110110
|--|--|
@@ -307,11 +307,11 @@ This is a special form of the SELECT statement, which is available only for CSV-
307307
SELECT sys.split(split_size)FROM BlobStorage
308308
```
309309

310-
Use this statement to return data records in batches of a specific size. That way you can process records in parallel instead of having to download them all at one time.
310+
Use this statement in cases where you want to download and then process CSV data records in batches. That way you can process records in parallel instead of having to download all records at one time. This statement doesn't return records from the CSV file. Instead, it returns a collection of batch sizes. You can then use each batch size to retrieve a batch of data records.
311311

312312
Use the *split_size* parameter to specify the number of bytes that you want each batch to contain. For example, if you want to process only 10 MB of data at a time, you're statement would look like this: `SELECT sys.split(10485760)FROM BlobStorage` because 10 MB is equal to 10,485,760 bytes. Each batch will contain as many records as can fit into those 10 MB.
313313

314-
In most cases, the total bytes contained in each batch will be slightly higher than the number that you specify. That's because the **sys.split** function returns complete records only, and a record might start just before the threshold that you specify.
314+
In most cases, the total bytes contained in each batch will be slightly higher than the number that you specify. That's because the **sys.split** function returns complete records only, and a record might start just before the threshold that you specify. The size of the last batch of records will likely be smaller than the size that you specify.
315315

316316
>[!NOTE]
317317
> The split_size must be at least 10 MB (10485760).

0 commit comments

Comments
 (0)