Viewing 15 posts - 16 through 30 (of 63 total)
Jean-Sebastien Carle (10/31/2009)
November 3, 2009 at 6:13 am
Darren Wallace (9/9/2009)
Andrew (9/9/2009)
rja.carnegie (9/9/2009)
September 9, 2009 at 10:10 am
rja.carnegie (9/9/2009)
September 9, 2009 at 9:15 am
Hopefully DBAs would be much more careful, but as I read this I was reminded of all the jobs I've had where a supervisor had to enter verification (via a...
August 26, 2009 at 10:36 am
tdcheek (8/19/2009)
I've always liked storing IP's as binary(4) - still 4 bytes, but simpler conversions:
I like this format as well, since that's essentially what IP addresses are anyway. Like using...
August 19, 2009 at 8:24 am
@michael-2 - I like the output, but the documentation syntax itself is so verbose! It looks like 60% of the time you spend typing a procedure could easily...
July 8, 2009 at 7:46 am
The extended properties work OK for documentation -- if EM/SSMS is your documentation framework. ::cringing:: :ermm:
They are a pain to enter, but there are tools out there that read them...
July 8, 2009 at 7:42 am
Richard Briggs (3/13/2009)
Andrew (3/13/2009)
Richard Briggs (3/13/2009)
I guess it depends on the application, may be relevant to birthday money transfers, birthday card emails sites etc.
Perhaps, but everyone isn't born at midnight...
March 13, 2009 at 10:40 pm
Richard Briggs (3/13/2009)
I guess it depends on the application, may be relevant to birthday money transfers, birthday card emails sites etc.
Perhaps, but everyone isn't born at midnight either, so you...
March 13, 2009 at 11:42 am
Richard Briggs (3/13/2009)
as regards my own post on creating a CALCULATED PERSISTED column containing 'Age'.
I have discovered that actually because GetDate() is non-deterministic such a column cannot be made to...
March 13, 2009 at 8:02 am
Prashant (3/13/2009)
DECLARE @BirthDate datetime
DECLARE @CurrentDate datetime
DECLARE @Age int
SET @BirthDate = '2008-03-13 10:10:00' /* OR Whatever date you want */
SET @CurrentDate = GETDATE() /* OR Whatever date...
March 13, 2009 at 5:51 am
roger.plowman (8/28/2008)
August 28, 2008 at 8:46 am
You are making sense, but I don't see how you'd do it. Any update query you run will update all the rows that have the same values for all three...
August 28, 2008 at 8:12 am
You weren't the only one to make either of those mistakes. I see several contributors stuck in the same tar pits over the last 7 pages of comments.
Andrew
August 6, 2008 at 10:26 am
rbarryyoung (8/6/2008)
Bill; one of the rules is "No Loops". "WHILE..." is a loop.
Another [implicit] rule is that the solution should return the desired result. While I don't understand the...
August 6, 2008 at 10:07 am
Viewing 15 posts - 16 through 30 (of 63 total)