Viewing 15 posts - 361 through 375 (of 1,129 total)
Lynn Pettis (3/21/2013)
sqldba_newbie (3/21/2013)
where WFID ='Something'
Order by Rkey asc, NFD desc
And my index is:
CREATE NONCLUSTERED INDEX [temp] ON [dbo].[WrkFS]
(
[WFid]...
March 21, 2013 at 11:09 am
GilaMonster (3/19/2013)
sqldba_newbie (3/19/2013)
opc.three (3/19/2013)
Even though estimated cost is well over 20, i still see query using all the cores?
Cores, or threads? What exactly are you seeing that is making you...
March 19, 2013 at 3:03 pm
opc.three (3/19/2013)
Even though estimated cost is well over 20, i still see query using all the cores?
Cores, or threads? What exactly are you seeing that is making you think it...
March 19, 2013 at 11:44 am
opc.three (3/19/2013)
sqldba_newbie (3/18/2013)
opc.three (3/18/2013)
Cost estimate compared to the Cost threshold for parallelism setting. The QO is a cost-based optimizer.Thanks. Do you mean Cost from estimate plan?
Yes. There is only an...
March 19, 2013 at 9:55 am
opc.three (3/18/2013)
Cost estimate compared to the Cost threshold for parallelism setting. The QO is a cost-based optimizer.
Thanks. Do you mean Cost from estimate plan?
March 18, 2013 at 10:23 pm
Does sql engine calculate estimated cost and then spin in different threads?
The Query Optimizer determines whether a plan will take advantage of parallelism.
edit: clarify around "operator"[/quote]
based on what?
March 18, 2013 at 4:00 pm
I think i found the root cause here. The query which we were using brings top 15 records in asc order based on a column which has NULL or 0...
March 4, 2013 at 9:00 am
Jeff Moden (3/1/2013)
opc.three (3/1/2013)
Jeff Moden (3/1/2013)
Actually, the change of an index CAN very much change the result especially where UPDATEs are concerned.
I think we covered the OP's question about SELECT...
March 1, 2013 at 9:35 am
Steve Thompson-454462 (2/19/2013)
February 19, 2013 at 8:53 am
GilaMonster (2/13/2013)
February 13, 2013 at 8:59 am
Balance (1/30/2013)
January 30, 2013 at 3:23 pm
GilaMonster (1/29/2013)
January 29, 2013 at 12:07 pm
GilaMonster (1/28/2013)
sqldba_newbie (1/28/2013)
GilaMonster (1/28/2013)
Each operator in the parallel portion of the query plan can parallel up to maxdop/number of cores. They won't all be running, but they can all exist.
I...
January 28, 2013 at 5:14 pm
GilaMonster (1/28/2013)
Each operator in the parallel portion of the query plan can parallel up to maxdop/number of cores. They won't all be running, but they can all exist.
I see 127...
January 28, 2013 at 3:41 pm
Bhuvnesh (1/28/2013)
January 28, 2013 at 9:27 am
Viewing 15 posts - 361 through 375 (of 1,129 total)