Sign in
Tips, Tricks, and Advice from the SQL Server Query Optimization Team
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Tags
No tags have been created or used yet.
Archive
Archives
September 2006
(2)
August 2006
(2)
July 2006
(3)
June 2006
(1)
May 2006
(2)
April 2006
(6)
March 2006
(8)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Tips, Tricks, and Advice from the SQL Server Query Optimization Team
UPDATE STATISTICS undocumented options
Posted
over 7 years ago
by
QueryOptTeam
12
Comments
If you read the Books Online page describing the UPDATE STATISTICS command, you will see that there are some undocumented options. UPDATE STATISTICS table | view [ { { index | statistics_name } | ( { index |statistics_name } [ ,...n ] ) } ] [ WITH...
Tips, Tricks, and Advice from the SQL Server Query Optimization Team
Hints for DML queries
Posted
over 7 years ago
by
QueryOptTeam
6
Comments
Not everyone knows that query level hints (like loop join) will impact the entirety of a DML query plan. This includes foreign key validation and indexed view maintenance. Let us look at an example with two tables involved in a foreign key constraint...
Tips, Tricks, and Advice from the SQL Server Query Optimization Team
Non updating updates
Posted
over 7 years ago
by
QueryOptTeam
6
Comments
A question we are frequently asked is what happens when an update statement assigns a column to its same current value. For example, use tempdb go create table t(i int, cc as i + 1) create index t_cc on t(cc) go insert into...
Page 1 of 1 (3 items)