All Tags »
SQL »
indexing (RSS)
Showing page 2 of 2 (12 total posts)
-
(Reposted from my msmvps.com blog)
A recent discussion on Twitter about a query that Denny Cherry was looking at led to this post by Josef Richberg: http://josef-richberg.squarespace.com/journal/2010/1/28/is-a-case-statement-considered-sargable.html, and I thought it might be worth going through a few points on the topic of SARGability. ...
-
(Reposted from my msmvps.com blog)
SARGable is an adjective in SQL that means that an item can be found using an index (assuming one exists). Understanding SARGability can really impact your ability to have well-performing queries. Incidentally – SARGable is short for Search ARGument Able.
If you have an index on phone numbers using LastName, ...
2