Skip to content

Commit fc10657

Browse files
authored
Merge pull request #21261 from MicrosoftDocs/main
2/16 PM Publish
2 parents 52f24ad + 7846228 commit fc10657

12 files changed

Lines changed: 57 additions & 22 deletions

File tree

docs/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server.md

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ curl https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources
7171
#Debian 10
7272
curl https://packages.microsoft.com/config/debian/10/prod.list > /etc/apt/sources.list.d/mssql-release.list
7373

74-
#Debian 11
74+
#Debian 11
7575
curl https://packages.microsoft.com/config/debian/11/prod.list > /etc/apt/sources.list.d/mssql-release.list
7676

7777
exit
@@ -150,26 +150,16 @@ sudo zypper install -y unixODBC-devel
150150
### <a id="ubuntu18"></a> Ubuntu
151151

152152
```bash
153+
if ! [[ "18.04 20.04 21.04" == *"$(lsb_release -rs)"* ]];
154+
then
155+
echo "Ubuntu $(lsb_release -rs) is not currently supported.";
156+
exit;
157+
fi
158+
153159
sudo su
154160
curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
155161

156-
#Download appropriate package for the OS version
157-
#Choose only ONE of the following, corresponding to your OS version
158-
159-
#Ubuntu 16.04
160-
curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list > /etc/apt/sources.list.d/mssql-release.list
161-
162-
#Ubuntu 18.04
163-
curl https://packages.microsoft.com/config/ubuntu/18.04/prod.list > /etc/apt/sources.list.d/mssql-release.list
164-
165-
#Ubuntu 20.04
166-
curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list > /etc/apt/sources.list.d/mssql-release.list
167-
168-
#Ubuntu 21.04
169-
curl https://packages.microsoft.com/config/ubuntu/21.04/prod.list > /etc/apt/sources.list.d/mssql-release.list
170-
171-
#Ubuntu 21.10
172-
curl https://packages.microsoft.com/config/ubuntu/21.10/prod.list > /etc/apt/sources.list.d/mssql-release.list
162+
curl https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list > /etc/apt/sources.list.d/mssql-release.list
173163

174164
exit
175165
sudo apt-get update
@@ -329,7 +319,6 @@ sudo zypper install -y unixODBC-devel
329319
### <a id="ubuntu17"></a> Ubuntu
330320

331321
```bash
332-
333322
if ! [[ "16.04 18.04 20.04 21.04" == *"$(lsb_release -rs)"* ]];
334323
then
335324
echo "Ubuntu $(lsb_release -rs) is not currently supported.";
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
description: "MSSQLSERVER_898"
3+
title: MSSQLSERVER_898
4+
ms.custom: ""
5+
ms.date: 02/15/2022
6+
ms.prod: sql
7+
ms.reviewer: ramakoni1, pijocoder, suresh-kandoth, wiassaf
8+
ms.technology: supportability
9+
ms.topic: "reference"
10+
helpviewer_keywords:
11+
- "898 (Database Engine error)"
12+
ms.assetid:
13+
author: suresh-kandoth
14+
ms.author: ramakoni
15+
---
16+
# MSSQLSERVER_898
17+
[!INCLUDE [SQL Server](../../includes/applies-to-version/sqlserver.md)]
18+
19+
## Details
20+
21+
|Attribute|Value|
22+
|---|---|
23+
|Product Name|SQL Server|
24+
|Event ID|898|
25+
|Event Source|MSSQLSERVER|
26+
|Component|SQLEngine|
27+
|Symbolic Name|BPOOL_SCAN_LONG_DURATION|
28+
|Message Text|`Buffer Pool scan took %I64d seconds: database ID %d, command '%ls', operation '%ls', scanned buffers %I64d, total iterated buffers %I64d, wait time %I64d ms. See 'https://go.microsoft.com/fwlink/?linkid=2132602' for more information.` |
29+
||
30+
31+
## Explanation
32+
33+
Certain operations in Microsoft SQL Server trigger a scan of the buffer pool (the cache that stores database pages in memory). On systems that have a large amount of RAM (1 TB of memory or greater), scanning the buffer pool may take a long time. This slows down the operation that triggered the scan.
34+
35+
## User action
36+
37+
This is an informational message, no action is necessary.
38+
39+
This message can be suppressed by TF890. For more information, see [TF890](../../t-sql/database-console-commands/dbcc-traceon-trace-flags-transact-sql.md#tf890).
40+
41+
## More information
42+
43+
For more information, see [Operations that trigger a buffer pool scan may run slowly on large-memory computers](/troubleshoot/sql/performance/buffer-pool-scan-runs-slowly-large-memory-machines).
-51.4 KB
Binary file not shown.
-55.2 KB
Binary file not shown.
-54.8 KB
Binary file not shown.
-15.3 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-55.6 KB
Binary file not shown.

docs/sql-server/install/what-s-new-in-sql-server-installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ author: MikeRayMSFT
1313
ms.author: mikeray
1414
---
1515
# What&#39;s New in SQL Server Installation
16-
[!INCLUDE [SQL Server Windows Only - ASDBMI ](../../includes/applies-to-version/sql-windows-only-asdbmi.md)]
16+
[!INCLUDE [SQL Server -Windows Only](../../includes/applies-to-version/sql-windows-only.md)]
1717

1818
Installation is supported on x64 processors only. For more information, see [Hardware and Software Requirements for Installing SQL Server](../../sql-server/install/hardware-and-software-requirements-for-installing-sql-server.md).
1919

0 commit comments

Comments
 (0)