Skip to content

Commit 301b451

Browse files
authored
Merge pull request #25826 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to main to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 374cf48 + c62a3cb commit 301b451

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

docs/linux/sql-server-linux-setup-machine-learning.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: SQL Server 2019 Machine Learning Services
44
description: "Learn how to install SQL Server 2019 Machine Learning Services on Linux: Red Hat, Ubuntu, and SUSE."
55
author: WilliamDAssafMSFT
66
ms.author: wiassaf
7-
ms.date: 05/24/2022
7+
ms.date: 01/27/2023
88
ms.topic: how-to
99
ms.service: sql
1010
ms.subservice: machine-learning-services
@@ -147,6 +147,9 @@ sudo su
147147
# Optionally, if your system does not have the https apt transport option
148148
apt-get install apt-transport-https
149149

150+
# If you are on Ubuntu 20.04, install the following package (MRO 3.5 has a dependency on libtinfo.so.5 in Ubuntu 20.04)
151+
apt-get install libncurses5
152+
150153
# Set the location of the package repo the "prod" directory containing the distribution.
151154
# This example specifies 20.04. Replace with 16.04 or 14.04 if you want those versions.
152155
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb

docs/t-sql/queries/select-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
3939

4040
[ [GROUP BY *group_by_expression*](../../t-sql/queries/select-group-by-transact-sql.md) ]
4141

42-
[ [WINDOW *window expression*](../../t-sql/queries/select-window-transact-sql.md)]
43-
4442
[ [HAVING *search_condition*](../../t-sql/queries/select-having-transact-sql.md) ]
45-
43+
44+
[ [WINDOW *window expression*](../../t-sql/queries/select-window-transact-sql.md)]
45+
4646
[ [ORDER BY *order_expression* [ ASC | DESC ] ](../../t-sql/queries/select-order-by-clause-transact-sql.md)]
4747

4848
The [UNION](../../t-sql/language-elements/set-operators-union-transact-sql.md), [EXCEPT, and INTERSECT](../../t-sql/language-elements/set-operators-except-and-intersect-transact-sql.md) operators can be used between queries to combine or compare their results into one result set.

docs/t-sql/statements/copy-into-transact-sql.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,9 +430,11 @@ WITH (
430430
## FAQ
431431

432432
### What is the performance of the COPY command compared to PolyBase?
433-
The COPY command will have better performance depending on your workload. For best loading performance, consider splitting your input into multiple files when loading CSV. This guidance applies to gzip compressed files as well.
433+
The COPY command will have better performance depending on your workload.
434+
- Uncompressed files can be split automatically, so there's no need to manually split CSV files.
435+
- Large compressed cannot be split automatically. For best loading performance, consider splitting your input into multiple files when loading compressed CSV.
434436

435-
### What is the file splitting guidance for the COPY command loading CSV files?
437+
### What is the file splitting guidance for the COPY command loading compressed CSV files?
436438
Guidance on the number of files is outlined in the table below. Once the recommended number of files are reached, you will have better performance the larger the files. The number of files is determined by number of compute nodes multiplied by 60. For example, at 6000DWU we have 12 compute nodes and 12*60 = 720 partitions. For a simple file splitting experience, refer to [How to maximize COPY load throughput with file splits](https://techcommunity.microsoft.com/t5/azure-synapse-analytics/how-to-maximize-copy-load-throughput-with-file-splits/ba-p/1314474).
437439

438440
| **DWU** | **#Files** |

0 commit comments

Comments
 (0)