Viewing 15 posts - 526 through 540 (of 8,416 total)
The difficulty you are having here is exactly why I said the meaning of 'set-based' is a bit woolly, in response to Sean saying that recursive CTEs are not set-based.
How...
May 26, 2012 at 2:01 am
Jeff Moden (5/25/2012)
May 25, 2012 at 11:12 pm
Lynn Pettis (5/25/2012)
Some replies spark additional questions. Especially when it helps deeper understanding.
Yes, I appreciate that. My rhetorical aside was really just to myself; though it does get...
May 25, 2012 at 4:07 pm
Lynn Pettis (5/25/2012)
Answering the rhetorical question, when has a thread ever stayed strictly on topic?
Not as often as it should? At least until the primary question has been answered.
May 25, 2012 at 3:39 pm
Gullimeel (5/24/2012)
May 25, 2012 at 3:37 pm
Gullimeel (5/25/2012)
May 25, 2012 at 2:44 pm
isuckatsql (5/25/2012)
May 25, 2012 at 2:37 pm
RBarryYoung (5/25/2012)
May 25, 2012 at 2:35 pm
Lynn Pettis (5/25/2012)
Gullimeel (5/25/2012)
So it isn't necessarily same algorithm used by the Query Optimizer, correct?
I told the optimizer alogorithm to calculate the cost based on IO and cpu cost..
How?
Language issues,...
May 25, 2012 at 2:32 pm
Gullimeel (5/25/2012)
May 25, 2012 at 2:27 pm
dclark 19140 (5/25/2012)
The table in question is does have a primary key/clustered index.
Thanks. Perhaps the problem is ghost cleanup instead? The following link contains information about this, as...
May 25, 2012 at 1:28 pm
isuckatsql (5/25/2012)
Actual Execution plan does not suggest anything to improve the query 🙁
Several parallelism operators in the parallel plan have a warning symbol to show you that exchange buffers were...
May 25, 2012 at 1:02 pm
USE AdventureWorks2008R2;
GO
DECLARE @sql nvarchar(MAX) =
(
SELECT
N'DROP ' +
QUOTENAME(SCHEMA_NAME(v.[schema_id])) +
...
May 25, 2012 at 12:46 pm
It seems likely the table is a heap (i.e. there is no clustered index). Empty pages are not automatically deallocated when deleting from a heap, unless a WITH (TABLOCK)...
May 25, 2012 at 12:10 pm
RBarryYoung (5/24/2012)
Is it my imagination or is Paul getting younger?😀
I wish :Wow:
May 24, 2012 at 8:39 pm
Viewing 15 posts - 526 through 540 (of 8,416 total)