From 8fb9d301488cd413aef1e14f12d6d7de220ef0b3 Mon Sep 17 00:00:00 2001 From: Rodrigo Ribeiro Gomes Date: Wed, 23 Dec 2020 18:56:31 -0300 Subject: [PATCH 1/2] Add note about parallel checks Added edition note about check in parallel --- .../dbcc-checktable-transact-sql.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/t-sql/database-console-commands/dbcc-checktable-transact-sql.md b/docs/t-sql/database-console-commands/dbcc-checktable-transact-sql.md index b8e0494e619..c1fef09ef5d 100644 --- a/docs/t-sql/database-console-commands/dbcc-checktable-transact-sql.md +++ b/docs/t-sql/database-console-commands/dbcc-checktable-transact-sql.md @@ -174,7 +174,11 @@ By default, DBCC CHECKTABLE performs parallel checking of objects. The degree of Parallel checking can be disabled by using trace flag 2528. For more information, see [Trace Flags (Transact-SQL)](../../t-sql/database-console-commands/dbcc-traceon-trace-flags-transact-sql.md). > [!NOTE] -> During a DBCC CHECKTABLE operation, the bytes that are stored in a byte-ordered user-defined type column must be equal to the computed serialization of the user-defined type value. If this is not true, the DBCC CHECKTABLE routine will report a consistency error. +> During a DBCC CHECKTABLE operation, the bytes that are stored in a byte-ordered user-defined type column must be equal to the computed serialization of the user-defined type value. If this is not true, the DBCC CHECKTABLE routine will report a consistency error. + +> [!NOTE] +> This feature is not available in every edition of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]. For more information, see parallel consistency check in the RDBMS Manageability section of [Features Supported by the Editions of SQL Server](../../sql-server/editions-and-components-of-sql-server-version-15.md). + ## Understanding DBCC Error Messages After the DBCC CHECKTABLE command finishes, a message is written to the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] error log. If the DBCC command successfully executes, the message indicates a successful completion and the amount of time that the command ran. If the DBCC command stops before completing the check because of an error, the message indicates the command was terminated, a state value, and the amount of time the command ran. The following table lists and describes the state values that can be included in the message. From a5a29817ce05d4282e44e79ebbd0149414915e9d Mon Sep 17 00:00:00 2001 From: Jason Roth Date: Fri, 11 Jun 2021 12:13:33 -0400 Subject: [PATCH 2/2] Updating link per Pedro's suggestion --- .../database-console-commands/dbcc-checktable-transact-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/t-sql/database-console-commands/dbcc-checktable-transact-sql.md b/docs/t-sql/database-console-commands/dbcc-checktable-transact-sql.md index c1fef09ef5d..5674d4d4d37 100644 --- a/docs/t-sql/database-console-commands/dbcc-checktable-transact-sql.md +++ b/docs/t-sql/database-console-commands/dbcc-checktable-transact-sql.md @@ -177,7 +177,7 @@ Parallel checking can be disabled by using trace flag 2528. For more information > During a DBCC CHECKTABLE operation, the bytes that are stored in a byte-ordered user-defined type column must be equal to the computed serialization of the user-defined type value. If this is not true, the DBCC CHECKTABLE routine will report a consistency error. > [!NOTE] -> This feature is not available in every edition of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]. For more information, see parallel consistency check in the RDBMS Manageability section of [Features Supported by the Editions of SQL Server](../../sql-server/editions-and-components-of-sql-server-version-15.md). +> This feature is not available in every edition of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]. For more information, see parallel consistency check in the RDBMS Manageability section of [Features Supported by the Editions of SQL Server](../../sql-server/editions-and-components-of-sql-server-version-15.md#RDBMSM). ## Understanding DBCC Error Messages