Viewing 15 posts - 4,831 through 4,845 (of 6,486 total)
Randy Petty (2/8/2008)
February 8, 2008 at 10:21 am
I'm also thinking you might get slightly better performance with a CTE:
;with DartCTE as
(
...
February 8, 2008 at 10:06 am
You'd want to think up an appropriate way to combine the two into a single value and ORDER by that.
In other words, in the case you mentioned where the count...
February 8, 2008 at 10:01 am
They also serve different purposes. Put simply - the Primary Key is the "external address", the clustered key is the "internal address". Meaning - the Clustered key tells...
February 8, 2008 at 9:54 am
Not that this is much consolation - if you set the "IF NOT EXISTS" scripting option to true, it will include the CREATE syntax, but it will get bypassed on...
February 8, 2008 at 9:45 am
You're in SSIS! (sorry - missed what forum you posted to) That does change things a little. Frank is right - you probably should use the unpivot component....
February 8, 2008 at 9:29 am
ChrisMoix (2/8/2008)
I know someone who tried to call and...
February 8, 2008 at 7:49 am
Not to take anything away from Antonio's solution - that's an ITERATIVE process, not a recursive one.
I've seen someone post a RECURSIVE version (using a CTE to get there), but...
February 8, 2008 at 7:15 am
Matt Miller (2/5/2008)
Jeff Moden (2/5/2008)
February 8, 2008 at 7:06 am
As "both" a developer and a DBA, I find the position that anyone looking to implement solid practices for testing and roll-out as being "in the way of progress" disingenuous,...
February 7, 2008 at 2:25 pm
GROUPING() "inserts" extra lines into your query with subtotal rollups, which is why that row has some many NULLs on it. So it never touches the detail records, which...
February 7, 2008 at 2:06 pm
It seems rather extreme - but could it be parameter sniffing?
Ken Henderson (you will be missed) described it rather well here:
http://blogs.msdn.com/khen1234/archive/2005/06/02/424228.aspx
February 7, 2008 at 1:47 pm
There's actually one level even higher, or at least used to (since the term has mysteriously disppeared). The Microsoft Fellow has a lot of the same requirements as this,...
February 7, 2008 at 1:36 pm
Since you're in 2000 - you're going to need to use something iterative to go out and pull in the various levels of children.
You seem to be describing...
February 7, 2008 at 12:53 pm
Oh I know - I'm not even going to comment on the cost-appropriateness of those licenses (especially the Volume licensing.) I was just noticing the one feature you can...
February 7, 2008 at 12:32 pm
Viewing 15 posts - 4,831 through 4,845 (of 6,486 total)