Viewing 15 posts - 1,726 through 1,740 (of 7,484 total)
xsevensinzx (5/18/2015)
May 18, 2015 at 6:52 pm
Jacob Wilkins (5/18/2015)
May 18, 2015 at 6:29 pm
David.Poole (5/18/2015)
May 18, 2015 at 6:23 pm
Eirikur Eiriksson (5/18/2015)
Ed Wagner (5/18/2015)
Eirikur Eiriksson (5/18/2015)
Revenant (5/18/2015)
crookj (5/18/2015)
SQLRNNR (5/18/2015)
pompspectacle
eyeglass
Sight
Line
Manager
Onager (well, many managers are wild asses)
May 18, 2015 at 6:18 pm
ChrisM@Work (5/18/2015)
SELECT
t.*,
x.RollingSum
FROM #team t
OUTER APPLY (
SELECT RollingSum = SUM(expense_amt)
FROM #team ti
WHERE ti.team_id = t.team_id
AND ti.date <= t.date
AND ti.date >= DATEADD(month,-3,t.date)
) x
WHERE t.date >= DATEADD(year, -1, GETDATE())...
May 18, 2015 at 5:57 pm
Jeff Moden (5/17/2015)
May 18, 2015 at 6:41 am
I was amused to see "VBScript works fine". It's a statement I disagree with, totally and utterly.
1) If you want an MS only scripting language, learn PoSH, not VBScript....
May 17, 2015 at 8:34 pm
Jeff Moden (5/17/2015)
1) The coverage for such a question in Books Online is not obvious. You actually have to infer that such...
May 17, 2015 at 8:10 pm
Nice clear and straightforward question.
Given the vast proportion (three quarters) of wrong answers, it evidently isn't as easy as it looks. That surprised me. I guess...
May 17, 2015 at 7:55 pm
Straightforward question,
It's a bit surprising how many have it wrong so far (more than half) because the four functions in the three wrong options have all been around since long...
May 17, 2015 at 7:38 pm
GilaMonster (5/17/2015)
Jeff Moden (5/16/2015)
GilaMonster (5/15/2015)
David Webb-CDS (5/15/2015)
May 17, 2015 at 7:20 pm
Jeff Moden (5/16/2015)
Me: Tell...
May 17, 2015 at 7:16 pm
Jeff Moden (5/17/2015)
Agreed. I guess that's what I'm griping about. They don't actually know how to test for what or that "what" even exists.
A big part of the...
May 17, 2015 at 7:13 pm
mister.magoo (5/17/2015)
If you think about how you define 100% correct, then it becomes obvious that you are both right.
Of course we're both right. Jeff is never wrong. ...
May 17, 2015 at 6:28 pm
Grant Fritchey (5/15/2015)
GilaMonster (5/14/2015)
dwain.c (5/14/2015)
I gotta wonder what the ANSI standards say about this one!Perfectly legal afaik.
It's legal. I've seen this before. List all the tables and then all the...
May 15, 2015 at 6:57 pm
Viewing 15 posts - 1,726 through 1,740 (of 7,484 total)