Viewing 15 posts - 1,966 through 1,980 (of 8,416 total)
Craig Farrell (5/23/2011)
May 24, 2011 at 12:35 am
SQLRNNR (5/23/2011)
May 24, 2011 at 12:26 am
Hi Craig,
Looking at the first two query plans you posted (without your index), the optimizer does pick the better plan - where better = lowest estimated cost. The estimated...
May 24, 2011 at 12:18 am
Craig Farrell (5/23/2011)
If anyone wants an interesting optimization conundrum (at least to me), please swing by this thread I started: http://www.sqlservercentral.com/Forums/Topic1113705-392-1.aspx
Swung by 🙂
May 23, 2011 at 11:12 pm
Hi Craig,
The following index appears optimal to me for this query:
CREATE UNIQUE NONCLUSTERED INDEX [UQ dbo.PriceHistoryTable_25000_NoBuf -ItemID, -UpdateDate (ItemPrice)]
ON PriceHistoryTable_25000_NoBuf (ItemID DESC, UpdateDate DESC)
INCLUDE (ItemPrice);
It allows the Segment...
May 23, 2011 at 11:08 pm
Peter Trast (5/16/2011)
May 16, 2011 at 10:58 am
peter-757102 (5/14/2011)
May 14, 2011 at 3:50 pm
Tom.Thomson (5/13/2011)
May 13, 2011 at 2:19 pm
Steve Jones - SSC Editor (5/13/2011)
I can't be responsible for sheep-reading and down under mis-interpreting the (other) colonist's English.
😀 😎
May implies it may or may not be true. It does...
May 13, 2011 at 2:09 pm
cfradenburg (5/13/2011)
May 13, 2011 at 9:30 am
Steve Jones - SSC Editor (5/13/2011)
Comments encouraged on the changes.
"Extents may be owned by only one object".
This still reads (to me) as excluding the possibility that an extent may be...
May 13, 2011 at 9:18 am
michael.kaufmann (5/13/2011)
But it's not the data type of your fields/columns that's important here--the page type of the ROW_OVERFLOW_DATA allocation unit is text/image.
I very much doubt this was the intention of...
May 13, 2011 at 9:08 am
Nils Gustav Stråbø (5/13/2011)
...A table with a varchar(max), text, image column will have their values stored in a LOB_DATA page even if they ore only a byte long.
Hi Nils,
Just a...
May 13, 2011 at 8:21 am
The 'quibbling' over this QotD is quite understandable.
I chose the first two options and the last two, because the question said to choose four options. I was told that...
May 13, 2011 at 8:06 am
Viewing 15 posts - 1,966 through 1,980 (of 8,416 total)