Viewing 15 posts - 1,996 through 2,010 (of 3,011 total)
Is the file you want to delete in the Primary filegroup?
March 2, 2009 at 1:30 pm
You can restore a backup of a SQL 2000 database to a SQL 2008 server.
March 2, 2009 at 1:06 pm
The application is using server side cursors. There is probably no good reason for this, so you should talk to the software vendor about it.
YOu might want to read this:
http://msdn.microsoft.com/en-us/library/aa905893(SQL.80).aspx
February 27, 2009 at 2:34 pm
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
Viewing 15 posts - 1,996 through 2,010 (of 3,011 total)