Viewing 15 posts - 61 through 75 (of 460 total)
GilaMonster (12/1/2015)
polkadot (12/1/2015)
Seriously, does any team really have discussions about these things?
Yes, good teams do, because they know that making time to establish standards and practices saves time later on.
If...
December 2, 2015 at 11:17 am
Hugo Kornelis (12/1/2015)
Luckily Shane does indicate in the explanation that using this type of table names is not a good...
December 1, 2015 at 7:10 am
As usual, a great question Hugo, but even better are your explanations!
I have no link for "documentation" per se, but this page has a nice example of a pass-through situation...
November 13, 2015 at 7:13 am
nickm_GR (11/10/2015)
Why question was much simpler...
November 12, 2015 at 8:14 am
Here's another approach: convert the integers for run_date and run_time to an actual DATETIME value, then compare using a standard date-time clause. Warning, functions in WHERE clause predicate. ...
November 10, 2015 at 8:17 am
g.britton (11/3/2015)
SELECT j.NAME
, s.next_run_time
FROM dbo.sysjobschedules s
CROSS APPLY (
SELECT datepart(YEAR, getdate()) * 10000 + datepart(MONTH, getdate())...
November 9, 2015 at 1:46 pm
Jeff Moden (11/9/2015)
Rich Mechaber (11/9/2015)
Jeff Moden (11/6/2015)
sknox (11/6/2015)
Luis Cazares (11/6/2015)
Rich Mechaber (11/6/2015)
November 9, 2015 at 7:35 am
Jeff Moden (11/6/2015)
sknox (11/6/2015)
Luis Cazares (11/6/2015)
Rich Mechaber (11/6/2015)
Aaron Bertrand had a nice blog about this: scroll down for "Pop Quiz" and see if you still think DATEPART abbreviations are straightforward.Rich
2...
November 9, 2015 at 7:20 am
Aaron Bertrand had a nice blog about this: scroll down for "Pop Quiz" and see if you still think DATEPART abbreviations are straightforward.
Rich
November 6, 2015 at 6:58 am
Ooooooookay, I think we've learned something here: Steve hasn't had his coffee yet today.
😉
October 28, 2015 at 7:45 am
Hugo Kornelis (10/26/2015)
matthew.flower (10/26/2015)
I must be missing the explanation here?
The explanation tells you where the problem is, but not what it is.
[font="Courier New"]select '19.4615381' * -1.0;[/font] uses constant expressions, for...
October 26, 2015 at 7:12 am
Got it right, but only because I read the question too quickly and was looking for "1" as a possible answer, b/c I thought the question read "How many rows...
October 22, 2015 at 6:45 am
hlsc1983 (12/16/2013)
can you please help me in designing the database?
the system will be...
October 20, 2015 at 7:14 am
Awesome, thanks for the question, I learned something from this:
I didn't realize you could DROP multiple tables with a single DROP statement (DROP TABLE #t1,#t2,#t3);
😉
Rich
October 14, 2015 at 11:31 am
Xavon (8/28/2015)
rmechaber (8/28/2015)
August 28, 2015 at 6:38 am
Viewing 15 posts - 61 through 75 (of 460 total)