Skip to content

Commit 666a0bd

Browse files
authored
Merge pull request #18786 from pmasl/patch-943
Update dbcc-traceon-trace-flags-transact-sql.md
2 parents 0a110a3 + 29720fb commit 666a0bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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
@@ -201,7 +201,7 @@ The following table lists and describes the trace flags that are available in [!
201201
|**11068**|Uses the server, database, or resource pool configured max degree of parallelism (MAXDOP) value for columnstore index insert operations. For more information on overriding degrees of parallelism, see the [Query Processing Architecture Guide](../../relational-databases/query-processing-architecture-guide.md#overriding-degrees-of-parallelism).<br /><br />**Important:** This trace flag is only effective if trace flag 11064 is also enabled.<br /><br />**Important:** Use this trace flag when faster data loads are preferred over maintaining [columnstore segment](../../relational-databases/indexes/columnstore-indexes-overview.md#column-segment) quality. For example, using this trace flag when loading 1,048,577 rows into a columnstore may result in more than one compressed rowgroup, if the insert operation is executing in parallel mode. Without this trace flag, the insert operation would result in one compressed rowgroup.<br /><br />**Note:** This trace flag applies to [!INCLUDE[sql-server-2019](../../includes/sssql19-md.md)] and higher builds.<br /><br />**Scope**: global only|
202202
|**11631**| An 'ALTER INDEX ... REORGANIZE' will clean up the deleted rows in a columnstore index rowgroup only when a certain threshold of rows has been deleted from that rowgroup. The default threshold is 10% of maximum row limit (1 million), or of 100,000 rows. This trace flag changes the threshold to 10% of the total current rows in a columnstore rowgroup. For example, if a rowgroup contains 20,000 rows, the threshold will be 2,000 deleted rows before REORGANIZE considers this rowgroup for cleanup. For more information see [Microsoft Support article](https://support.microsoft.com/help/5000895)<br /><br />**Note:** This trace flag applies to [!INCLUDE[sql-server-2019](../../includes/sssql19-md.md)] CU9 and higher builds.<br /><br />**Scope**: global only|
203203
|**11634**| An 'ALTER INDEX ... REORGANIZE' will clean up the deleted rows in a columnstore index rowgroup only when a certain threshold of rows has been deleted from that rowgroup. The default threshold is 10% of maximum row limit (1 million), or 100,000 rows. This trace flag changes the threshold to 1% of the rows in a columnstore rowgroup. If enabled together with trace flag 11631 then it will be 1% of the current number of rows in a rowgroup, instead of 1% of 1 million rows. For more information see [Microsoft Support article](https://support.microsoft.com/help/5000895)<br /><br />**Note:** This trace flag applies to [!INCLUDE[sql-server-2019](../../includes/sssql19-md.md)] CU9 and higher builds.<br /><br />**Scope**: global only|
204-
|**13116**|Disables the fix for bug [13685819](https://support.microsoft.com/en-us/topic/kb5000645-cumulative-update-16-for-sql-server-2016-sp2-a3997fa9-ec49-4df0-bcc3-12dd58b78265#bkmk_13685819). Use this trace flag if after you apply [!INCLUDE[sssql16-md](../../includes/sssql16-md.md)] SP2 CU16, you encounter an issue in which DML (insert/update/delete) queries that use parallel plans cannot complete any execution and encounter HP_SPOOL_BARRIER waits. <br /><br />**Note:** This trace flag applies to [!INCLUDE[sql-server-2019](../../includes/sssql19-md.md)] and higher builds.<br /><br />**Scope**: global only|
204+
|**13116**|Disables the fix for bug [13685819](https://support.microsoft.com/en-us/topic/kb5000645-cumulative-update-16-for-sql-server-2016-sp2-a3997fa9-ec49-4df0-bcc3-12dd58b78265#bkmk_13685819). Use this trace flag if after you apply [!INCLUDE[sssql16-md](../../includes/sssql16-md.md)] SP2 CU16, you encounter an issue in which DML (insert/update/delete) queries that use parallel plans cannot complete any execution and encounter HP_SPOOL_BARRIER waits. <br /><br />**Note:** This trace flag applies to [!INCLUDE[sssql16-md](../../includes/sssql16-md.md)] SP2 CU16.<br /><br />**Scope**: global only|
205205

206206
## Examples
207207
The following example sets trace flag 3205 on for all sessions at the server level by using DBCC TRACEON.

0 commit comments

Comments
 (0)