Skip to content

Commit 6777037

Browse files
committed
Update thanks to info and fix some typos
1 parent 27b74ff commit 6777037

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Headers:
4848
- [SQL Server Licensing](/SQL Server Licensing.md)
4949
- [SQL Server People](/SQL Server People.md 'Most Valuable SQL Server professionals')
5050
- [SQL Server Trace Flag](/SQL Server Trace Flag.md 'Complete list - 510 Trace Flags') (**Complete list - 510 trace flags**)
51-
- [SQL Server Version](/SQL Server Version.md 'List of all Microsoft SQL Sever versions') (**Complete list - from SQL Server 1.0 to SQL Server 2016**)
51+
- [SQL Server Version](/SQL Server Version.md 'List of all Microsoft SQL Sever versions') (**Complete list - from SQL Server 1.0 to SQL Server VNext**)
5252
- [Articles](/Articles)
5353
- [CLR procedures](/CLR)
5454
- [SQL#](/CLR/SQLsharp_SETUP.sql) free version - QUICKEST and EASIEST way to extending the power of T-SQL with C#
@@ -93,7 +93,7 @@ Headers:
9393
- [udf_SplitStringByDelimiter](/User_Defined_Function/udf_SplitStringByDelimiter.sql)
9494
- [udf_Tally](/User_Defined_Function/udf_Tally.sql)
9595
- and many others...
96-
- [Utilities](/Utilities) (**complete list of 175 SQL Server paid and free Utilities and Tools**)
96+
- [Utilities](/Utilities) (**complete list of 180 SQL Server paid and free Utilities and Tools**)
9797

9898
[*Back to top*](#header01)
9999

SQL Server People.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Most valuable professionals in Microsoft SQL Server Database world
1919
| Gail Shaw | [Gail Blog] | ZAF | Johannesburg | [@SQLintheWild] | NULL | 8 | [Shaw MVP] |
2020
| Aaron Bertrand | [Aaron Articles] | | NULL | [@AaronBertrand] | NULL | 19 | [Bertrand MVP] |
2121
| Kevin Kline | [Kevin Blog] | | NULL | [@kekline] | kevin_e_kline@yahoo.com | 13 | [Kline MVP] |
22-
| Robert Virag | [Robert Blog] | | NULL | NULL | NULL | 0 | - |
2322
| John Sansom | [John Blog] | | NULL | [@SqlBrit] | NULL | 0 | - |
2423
| Jes Borland | [Jes Articles] | | NULL | [@grrl_geek] | NULL | 4 | [Borland MVP] |
2524
| Sean Smith | [Sean Scripts] | | NULL | NULL | NULL | 0 | - |

SQL Server Trace Flag.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,30 @@ Headers:
1212
- [Trace flags list](#trace-flags-list)
1313

1414
Source links:
15+
- [A Topical Collection of SQL Server Flags](https://sqlcrossjoin.wordpress.com/2013/10/28/a-topical-collection-of-sql-server-flags/) (by Aaron Morelli)
1516
- [Steinar Andersen great post](http://www.sqlservice.se/updated-microsoft-sql-server-trace-flag-list/)
1617
- [Yusuf Anis trace flag table](http://www.sqlservercentral.com/articles/trace+flags/70131/)
1718
- [MSDN ms188396]
1819
- [Albert van der Sel TF list](http://antapex.org/traceflags_sqlserver.txt)
1920
- [TECHNET List Of SQL Server Trace Flags]
2021
- [Amit Banerjee TF list](http://troubleshootingsql.com/2012/07/01/sql-server-2008-trace-flags/)
2122
- [Paul Randal discussing TF Pro’s and Con’s](http://www.sqlskills.com/blogs/paul/the-pros-and-cons-of-trace-flags/)
22-
- [A Topical Collection of SQL Server Flags](https://sqlcrossjoin.wordpress.com/2013/10/28/a-topical-collection-of-sql-server-flags/)
2323
- **When specifying a trace flag with the -T option, use an uppercase "T" to pass the trace flag number.
2424
A lowercase "t" is accepted by SQL Server, but this sets other internal trace flags that are required only by SQL Server support engineers.
2525
(Parameters specified in the Control Panel startup window are not read.)**: https://technet.microsoft.com/en-us/en-en/library/ms190737%28v=sql.120%29.aspx
2626
- [Enabling SQL Server Trace Flag for a Poor Performing Query Using QUERYTRACEON](https://www.mssqltips.com/sqlservertip/3320/enabling-sql-server-trace-flag-for-a-poor-performing-query-using-querytraceon/)
2727
- [Disabling SQL Server Optimizer Rules with QUERYRULEOFF](https://www.mssqltips.com/sqlservertip/4175/disabling-sql-server-optimizer-rules-with-queryruleoff/)
2828

29-
**Thanks to:**
30-
- Steinar Andersen
31-
- Brent Ozar
29+
**Great thanks to:**
30+
- Aaron Morelli ([b](https://sqlcrossjoin.wordpress.com)|[t](https://twitter.com/sqlcrossjoin))
31+
- Steinar Andersen ([b](http://www.sqlservice.se/)|[t](https://twitter.com/SQLSteinar))
32+
- Brent Ozar ([b](https://www.brentozar.com/)|[t](https://twitter.com/BrentO))
3233
- Yusuf Anis
3334
- Lars Utterström
3435
- Martin Höglund
3536
- Håkan Winther
3637
- Toine Rozemeijer
37-
- Robert L Davis aka @sqlsoldier
38+
- Robert L Davis ([b](http://www.sqlsoldier.com/wp/)|[t](https://twitter.com/SQLSoldier))
3839
- sql_handle aka @sql_handle
3940
- Andrzej Kukuła
4041

@@ -3079,7 +3080,7 @@ Link: [What You Need to Know about the Batch Mode Window Aggregate Operator in S
30793080

30803081
**Trace Flag: 9471**<br />
30813082
Function: Causes SQL Server to generate a plan using minimum selectivity for single-table filters, under the query optimizer cardinality estimation model of SQL Server 2014 through SQL Server 2016 versions.
3082-
Beginning with SQL Server 2016 SP1, to accomplish this at the query level, add the USE HINT query hint instead of using this trace flag.
3083+
Beginning with SQL Server 2016 SP1, to accomplish this at the query level, add the USE HINT query hint instead of using this trace flag.<br />
30833084
**Note: Please ensure that you thoroughly test this option, before rolling it into a production environment.**<br />
30843085
Link: [New Features in SQL Server 2016 Service Pack 1]<br />
30853086
Link: [MSDN ms188396]<br />

0 commit comments

Comments
 (0)