Viewing 15 posts - 4,741 through 4,755 (of 6,486 total)
you've seen them before, just not named this way. In Official Microsoft training speak, they're called "Range-based non-EquiJoins" or "comparison-based non-EquiJoin". They're dangerous because they cause really high...
February 13, 2008 at 12:57 pm
Jeff Moden (2/13/2008)
I guess what I really wanna know from Stricknyn,...
February 13, 2008 at 12:44 pm
Jeff Moden (2/13/2008)
Heh... ya gotta admit, though... it was funny...
Oh no denying it (as long as the context isn't lost that that was a tongue-in cheek comment). It's funny...all the...
February 13, 2008 at 12:33 pm
Cumulative is nothing but a high-falutin' way to say "running total". cumulative = (running total by seqnum of incurred over months)
considering how small the data sounds like...
February 13, 2008 at 12:30 pm
Jeff Moden (2/13/2008)
Good one... Keep in mind that would be good for one row at a time (Rand is not random in a single query) and if the digit "0"...
February 13, 2008 at 12:01 pm
Agreed - no reason it couldn't be run against the master, but since OP gave us a temp table, that's what I used.
February 13, 2008 at 11:56 am
Jeff Moden (2/13/2008)
February 13, 2008 at 11:52 am
I'm thinking you just want to do an UPDATE, not an INSERT. INSERT adds new rows. You seem to be wanting to just add the values from...
February 13, 2008 at 11:12 am
dang it - missed what forum I was in.
ugh....No XML PATH in 2000.... So the syntax gets quite a bit longer.....
So - that particular example, no. Not entirely irretrievable,...
February 13, 2008 at 10:44 am
Cast them to char first with a format you like, then chop off what you don't want:
left(convert(char,PeriodstartDate,101),5)+' - '+left(convert(char,PeriodEndDate,101),5)
February 13, 2008 at 10:28 am
The articles I found yesterday as to hacking the registry were for 7.0, and had a note at the top stating you should use the "official" UI way in 2005....
February 13, 2008 at 9:59 am
Greg -
does your e-mail system support HTML? If so - there is a trick with XML that might work. The cure may be worse thant what you're...
February 13, 2008 at 9:51 am
Steve Jones - Editor (2/13/2008)
February 13, 2008 at 8:50 am
I tried knocking off early the other day by using the "I've done 8 hours worth of work already today". Of course - it was noon, so my manager...
February 13, 2008 at 8:41 am
I noticed you didn't mention using the CASE statement to remove nulls from your second view. I suspect that is your issue. In other words - I wouldn't...
February 13, 2008 at 8:34 am
Viewing 15 posts - 4,741 through 4,755 (of 6,486 total)