Viewing 6 posts - 1 through 6 (of 6 total)
Fyi, this is my execution plan for the smart filter query:
StmtText
-------------------------------------------------------------------------------------------------------------------------------------------
|--Bookmark Lookup(BOOKMARK[Bmk1000]), OBJECT
[Northwind].[dbo].[Customers]))
|--Index Scan(OBJECT
October 9, 2006 at 9:45 pm
Please look again . The code I posted does an index scan on the City index. The primary key is CustomerID. The statistics must...
October 9, 2006 at 9:24 pm
Note that it has nothing to do with the fact that it's an integer ID btw. Because we're looking for CustomerID, which is the clustered index, and every non-clustered index...
October 9, 2006 at 8:33 pm
This technique, although interesting, should be used sparingly as it affects performance. The optimizer will perform full table scans on all tables that have a smart filter on them. Therefore,...
October 8, 2006 at 8:57 pm
Although an interesting technique, from a database performance point of view, this is not a very good idea. SARGs are turned into non-SARGs, so indexes won't be used (for an...
July 25, 2004 at 10:42 pm
Or you could use RIGHT(Field, LEN(Field) - 2)
Note that DATALENGTH() will you give you twice the number of characters for unicode columns (i.e. it returns the number of bytes). LEN()...
July 28, 2003 at 11:18 pm
Viewing 6 posts - 1 through 6 (of 6 total)
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy