Viewing 15 posts - 1,996 through 2,010 (of 3,008 total)
I see discussions of this often enough that I think it would worth it for Microsoft to build some capability for this into the database engine.
It wouldn’t have to be...
February 27, 2009 at 9:37 am
You can't get it from the hashed password. A hash is one-way.
February 24, 2009 at 3:49 pm
Has anyone started an "Are the posts on the 'Are the posted questions getting worse?' thread getting worse" thread yet?
February 24, 2009 at 3:30 pm
Wouldn't 1,048,576 members be a MegaMember?
February 24, 2009 at 3:14 pm
Use the @attachments parameter in xp_sendmail; you can lookup xp_sendmail in SQL Server 2000 Books Online.
You should post SQL Server 2000 questions in the SQL Server 2000 forumns.
February 24, 2009 at 11:19 am
select
[Date] = dateadd(year,(Ordinal_Date/1000)-1900,((Ordinal_Date%1000)-1)) ,
[Time_of_Day] = dateadd(ss,Second_of_Day,0)
from
( -- Test Data
select Ordinal_Date = 2008044, Second_of_Day = 55228
) a
Date ...
February 23, 2009 at 12:22 pm
Just to complete the discussion, FULL OUTER JOIN was also supported in SQL 6.5
Just ran this in SQL 6.5:
select a.id,b.id
from
( select id...
February 18, 2009 at 2:16 pm
Lynn Pettis (2/18/2009)
Michael Valentine Jones (2/18/2009)
Lynn Pettis (2/18/2009)
Adi Cohn (2/18/2009)
February 18, 2009 at 2:04 pm
Lynn Pettis (2/18/2009)
Adi Cohn (2/18/2009)
February 18, 2009 at 1:49 pm
Steve Jones - Editor (2/18/2009)
What features would really help you "high posters" here at SSC? Changes to the forums? the...
February 18, 2009 at 1:41 pm
Lynn Pettis (2/18/2009)
Adi Cohn (2/18/2009)
Michael Valentine Jones (2/18/2009)
jgrubb (2/18/2009)
I just ran the following code on SQL Server 6.5 and it worked fine:
I have to admit that I’m amazed that you...
February 18, 2009 at 1:22 pm
jgrubb (2/18/2009)
I wouldn't say "clever" code. IIRC SQL 7 introduced the Ansi join. before that, *= was all you had. Myself, I still think where...
February 18, 2009 at 12:12 pm
Sometimes there's just no good substitute for one-on-one, boot-to-butt communication.
I had an exchange like this with a developer recently.
Dev: I need a login created.
Me: Send me an email with Server...
February 17, 2009 at 9:08 pm
*= is a syntax that is obsolete and should not be used. It is not allowed in SQL Server 2005. *= and =* should be replaced with left...
February 16, 2009 at 3:37 pm
Derek Dongray (2/16/2009)
David Webb (2/13/2009)
February 16, 2009 at 3:33 pm
Viewing 15 posts - 1,996 through 2,010 (of 3,008 total)