Skip to content

Commit 01c4003

Browse files
committed
Add trace flag 11024
1 parent e6e4290 commit 01c4003

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Headers:
5050
- [SQL Server Name Convention and T-SQL Programming Style](/SQL%20Server%20Name%20Convention%20and%20T-SQL%20Programming%20Style.md)
5151
- [SQL Server Licensing](/SQL%20Server%20Licensing.md)
5252
- [SQL Server People](/SQL%20Server%20People.md 'Most Valuable SQL Server professionals')
53-
- [SQL Server Trace Flag](/SQL%20Server%20Trace%20Flag.md 'Complete list - 532 Trace Flags') (**Complete list - 532 trace flags**)
53+
- [SQL Server Trace Flag](/SQL%20Server%20Trace%20Flag.md 'Complete list - 533 Trace Flags') (**Complete list - 533 trace flags**)
5454
- [SQL Server Version](/SQL%20Server%20Version.md 'List of all Microsoft SQL Sever versions') (**Complete list - from SQL Server 1.0 to SQL Server 2017**)
5555
- [Articles](/Articles)
5656
- [CLR procedures](/CLR)

SQL Server Trace Flag.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Microsoft SQL Server Trace Flags
2-
Complete list of Microsoft SQL Server trace flags (532 trace flags)
2+
Complete list of Microsoft SQL Server trace flags (533 trace flags)
33

44
**REMEMBER: Be extremely careful with trace flags, test in your test environment first. And consult professionals first if you are the slightest uncertain about the effects of your changes.**
55
**Trace flag behavior may not be supported in future releases of SQL Server.**
@@ -172,7 +172,7 @@ Use this trace flag if SQL Server is experiencing high number of QDS_LOADDB wait
172172

173173
<a id="trace-flags-list"></a>
174174
## Trace Flags List
175-
Summary: **532 trace flags**
175+
Summary: **533 trace flags**
176176

177177

178178
<a id="-1"></a>
@@ -1367,7 +1367,7 @@ Link: None
13671367
<a id="2422"></a>
13681368
#### Trace Flag: 2422
13691369
Function: Enables the SQL Server Database Engine to abort a request when the maximum time set by Resource Governor REQUEST_MAX_CPU_TIME_SEC configuration is exceeded.<br />
1370-
**Note: This trace flag applies to SQL Server 2017 CU3 and higher builds.**
1370+
**Note: This trace flag applies to SQL Server 2017 CU3 and higher builds.**<br />
13711371
Link: http://support.microsoft.com/help/4038419<br />
13721372
Scope: global only
13731373

@@ -4066,6 +4066,16 @@ Link: http://support.microsoft.com/kb/4039284<br />
40664066
Link: [Docs Trace Flags]
40674067

40684068

4069+
<a id="11024"></a>
4070+
#### Trace Flag: 11024
4071+
Function: In Microsoft SQL Server 2017, when incremental statistics are built on the top of partitioned tables, the sum of modification counts of all partitions is stored as the modification count of the root node.
4072+
When the modification count of the root node exceeds a threshold, the auto update of statistics is triggered.
4073+
However, if the modification count of any single partition does not exceed the local threshold, the statistics are not updated.
4074+
Additionally, the modification count of the root node is reset to zero. This may cause delay in the auto update of incremental statistics.
4075+
When trace flag 11024 is enabled, the modification count of the root node is kept as the sum of modification counts of all partitions.<br />
4076+
Link: http://support.microsoft.com/kb/4041811
4077+
4078+
40694079
[Query Store Trace Flags]:https://www.sqlskills.com/blogs/erin/query-store-trace-flags/
40704080
[Docs Trace Flags]:https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-traceon-trace-flags-transact-sql
40714081
[DBCC CHECKDB]:https://msdn.microsoft.com/en-us/library/ms176064.aspx

0 commit comments

Comments
 (0)