Skip to content

Commit 109da87

Browse files
Introduce an acronym
1 parent 39dae36 commit 109da87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/t-sql/database-console-commands/dbcc-traceon-trace-flags-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Trace flag behavior might not be supported in future releases of [!INCLUDE [ssNo
106106
| <a id="tf809"></a>**809** | Enables what is referred to as *Direct Write* behavior for the [hybrid buffer pool](../../database-engine/configure-windows/hybrid-buffer-pool.md). This mode requires that [persisted log buffer](../../relational-databases/databases/add-persisted-log-buffer.md) is enabled in the same database as hybrid buffer pool. *Direct Write* allows the hybrid buffer pool to serve as a cache for both dirty and clean pages, reducing the workload demands on the DRAM buffer pools for OLAP and OLTP style workloads. This trace flag was introduced in [!INCLUDE [sssql22-md](../../includes/sssql22-md.md)] and the behavior is enabled by default in [!INCLUDE [sssql22-md](../../includes/sssql22-md.md)] CU 1. If you're using [!INCLUDE [sssql22-md](../../includes/sssql22-md.md)] CU 1 and later versions, the trace flag is ignored. |
107107
| <a id="tf818"></a>**818** | Enables additional I/O diagnostics to check for Lost Write or Stale Read conditions during file I/O operations. Trace Flag 818 enables an in-memory ring buffer that is used for tracking the last 2,048 successful write operations that are performed by [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)], not including sort and workfile I/Os. When errors such as Error 605, 823, or 3448 occur, the incoming buffer's log sequence number (LSN) value is compared to the recent write list. If the LSN that is retrieved is older than the one specified during the write operation, a new error message is logged in the [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)] error log. For more information, see [SQL Server diagnostics detects unreported I/O problems due to stale reads or lost writes](/troubleshoot/sql/database-engine/database-file-operations/diagnostics-for-unreported-io-problems).<br /><br />**Note:** Starting with [!INCLUDE [ssSQL17](../../includes/sssql17-md.md)], this trace flag has no effect.<br /><br />**Scope:** Global only. |
108108
| <a id="tf830"></a>**830** | Disables detection and reporting of I/O requests that take a very long time to complete. By default [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)] uses a mechanism to detect read and write I/O requests that take a long time (typically longer than 15 seconds). This trace flag disables this detection. For more information, see [MSSQLSERVER_833](../../relational-databases/errors-events/mssqlserver-833-database-engine-error.md).<br /><br />**Note:** It isn't recommended that you enable this trace flag because you could decrease your ability to detect I/O issues on the system.<br /><br />**Scope:** Global only. |
109-
| <a id="tf834"></a>**834** | Uses large-page allocations for all memory allocations within the SQLOS workspace. The large page size varies depending on the hardware platform and can be from 2 MB to 16 MB. Large pages are allocated at startup and are kept throughout the lifetime of the process.<br /><br />In a certain narrow set of scenarios, Trace Flag 834 might improve performance by increasing the efficiency of the translation look-aside buffer (TLB) in the CPU. In other words, Trace Flag 834 increases the efficiency of managing physical to virtual memory address translation that is performed by the memory management hardware.<br /><br />Before you enable Trace Flag 834, follow the recommendations for maximum server memory configuration in [Server memory configuration options](../../database-engine/configure-windows/server-memory-server-configuration-options.md).<br /><br />**Note:** Trace Flag 834 applies only to 64-bit versions of [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)]. You must have the Lock pages in memory user right to turn on Trace Flag 834. You can turn on Trace Flag 834 only at startup. Trace Flag 834 can prevent the server from starting if memory is fragmented and if large pages can't be allocated. Therefore, Trace Flag 834 is best suited for servers that are dedicated to [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)].<br /><br />**Note:** When enabled, the large-page memory model preallocates all SQLOS memory at instance startup and doesn't return that memory to the OS.<br /><br />**Warning:** We don't recommend turning on Trace Flag 834 unless you thoroughly test it and determine that it materially benefits your workload. Enabling this trace flag can substantially increase the kernel CPU time and reduce performance. This occurs if memory becomes fragmented, requiring [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)] to call Windows APIs to allocate and deallocate memory instead of reusing memory cached in the SQLOS workspace. Trace Flag 834 can also cause unnecessary memory consumption because the unused part of committed memory blocks isn't released to the operating system.<br /><br />**Note:** If you're using columnstore indexes, don't enable Trace Flag 834. For more information, see [Interoperability issues between batch mode processing and large page memory model](/troubleshoot/sql/database-engine/performance/batch-mode-with-large-page-memory-issues). Instead, if using [!INCLUDE [sql-server-2019](../../includes/sssql19-md.md)] and later versions, consider using Trace Flag [876](#tf876) instead.<br /><br />**Scope:** Global only. |
109+
| <a id="tf834"></a>**834** | Uses large-page allocations for all memory allocations within the SQL Server Operating System (SQLOS) workspace. The large page size varies depending on the hardware platform and can be from 2 MB to 16 MB. Large pages are allocated at startup and are kept throughout the lifetime of the process.<br /><br />In a certain narrow set of scenarios, Trace Flag 834 might improve performance by increasing the efficiency of the translation look-aside buffer (TLB) in the CPU. In other words, Trace Flag 834 increases the efficiency of managing physical to virtual memory address translation that is performed by the memory management hardware.<br /><br />Before you enable Trace Flag 834, follow the recommendations for maximum server memory configuration in [Server memory configuration options](../../database-engine/configure-windows/server-memory-server-configuration-options.md).<br /><br />**Note:** Trace Flag 834 applies only to 64-bit versions of [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)]. You must have the Lock pages in memory user right to turn on Trace Flag 834. You can turn on Trace Flag 834 only at startup. Trace Flag 834 can prevent the server from starting if memory is fragmented and if large pages can't be allocated. Therefore, Trace Flag 834 is best suited for servers that are dedicated to [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)].<br /><br />**Note:** When enabled, the large-page memory model preallocates all SQLOS memory at instance startup and doesn't return that memory to the OS.<br /><br />**Warning:** We don't recommend turning on Trace Flag 834 unless you thoroughly test it and determine that it materially benefits your workload. Enabling this trace flag can substantially increase the kernel CPU time and reduce performance. This occurs if memory becomes fragmented, requiring [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)] to call Windows APIs to allocate and deallocate memory instead of reusing memory cached in the SQLOS workspace. Trace Flag 834 can also cause unnecessary memory consumption because the unused part of committed memory blocks isn't released to the operating system.<br /><br />**Note:** If you're using columnstore indexes, don't enable Trace Flag 834. For more information, see [Interoperability issues between batch mode processing and large page memory model](/troubleshoot/sql/database-engine/performance/batch-mode-with-large-page-memory-issues). Instead, if using [!INCLUDE [sql-server-2019](../../includes/sssql19-md.md)] and later versions, consider using Trace Flag [876](#tf876) instead.<br /><br />**Scope:** Global only. |
110110
| <a id="tf836"></a>**836** | Use the max server memory option for the buffer pool. Trace Flag 836 causes [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] to size the buffer pool at startup based on the value of the max server memory option instead of based on the total physical memory. You can use Trace Flag 836 to reduce the number of buffer descriptors that are allocated at startup in 32-bit Address Windowing Extensions (AWE) mode.<br /><br />**Note:** Trace Flag 836 applies only to 32-bit versions of [!INCLUDE [ssnoversion-md](../../includes/ssnoversion-md.md)] that have the AWE allocation enabled. You can turn on Trace Flag 836 only at startup.<br /><br />**Scope:** Global only. |
111111
| <a id="tf845"></a>**845** | Enables locked pages on Standard SKUs of [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)], when the service account for [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)] has the Lock Pages in Memory privilege enabled. For more information, see [KB970070](https://support.microsoft.com/kb/970070) and [Server Memory Server Configuration Options](../../database-engine/configure-windows/server-memory-server-configuration-options.md#lock-pages-in-memory-lpim).<br /><br />**Note:** Starting with [!INCLUDE [ssSQL11](../../includes/sssql11-md.md)], this behavior is enabled by default for Standard SKUs, and Trace Flag 845 must not be used.<br /><br />**Scope:** Global only. |
112112
| <a id="tf876"></a>**876** | Uses large-page allocations for columnstore.<br /><br />**Note:** Unlike Trace Flag 834, using Trace Flag 876 doesn't preallocate SQLOS memory at instance startup, and unused memory can be released.<br /><br />**Applies to:** [!INCLUDE [sql-server-2019](../../includes/sssql19-md.md)] and later versions.<br /><br />**Note:** Ensure that you thoroughly test this option, before rolling it into a production environment.<br /><br />**Scope:** Global only. |

0 commit comments

Comments
 (0)