Viewing 15 posts - 61 through 75 (of 92 total)
"http://ls.sswug.org/cgi-bin/lyris.pl?site=sswug&page=topic&topic=sql_server&text_mode=0&lang=english
"
Weird. I guess either that change happened seamlessly, or there has been a community of squatters
Like refugees, abandoned by our listmates.
-Ken
August 25, 2003 at 9:09 am
Sneaky. Two reasons why I got it right; 1) I'm a stickler for trying not to use keywords or reserved keywords... 2) I took a little more time...
-Ken
August 14, 2003 at 10:11 am
Bah, I'm going to be cranky here 😉 Not just because I got the answer wrong, I swear.
The correct answer really shouldn't be "Another SQL Server 2000 machine" you're...
-Ken
August 7, 2003 at 11:10 am
quote:
Hi CarKnee,you've already seem to have found a solution.
What about REPLACE (your_column, 'ed','',1) and CAST this as int?
Haven't tried this here at...
-Ken
July 25, 2003 at 4:11 pm
Whoops, I think I replied to one of those threads in a link. ![]()
Out of curiousity, why do you need to be concerned with leap years...
-Ken
July 24, 2003 at 10:38 am
This is how I'd do it:
declare @bd datetime
select @bd = '1976-12-2'
select case when month(@bd) > month(getdate()) then datediff(year, @bd, getdate())-1
when month(@bd) = month(getdate()) and day(@bd) < day(getdate()) then datediff(year, @bd,...
-Ken
July 24, 2003 at 10:17 am
Looking BOL for SQL2000 64bit, they only mention Itanium/Itanium II processors. I know this doesn't really help you, but it doesn't look good. There's no HCL 64bit SQL...
-Ken
July 24, 2003 at 9:27 am
You could always just stop SQL Server, delete the LDF then restart SQL Server.. before you do so, make sure your initial size setting isn't huge, or you'll be...
-Ken
July 24, 2003 at 9:11 am
I wouldn't now how to handle the multiple recordsets. My advice would be to copy the portion out of sp_helplogins that creates only the output you desire and create...
-Ken
June 11, 2003 at 3:12 pm
"For testing purposes, is there a way to corrupt a db via an .ASP page over http?"
![]()
Edited by - spongemagnet on 06/11/2003 3:03:12 PM
-Ken
June 11, 2003 at 3:02 pm
Here's a twist, how do you pronounce: VARCHAR
Some say VAR (sounds like PAR) CHAR (like CHAR-BROILED)
I say it like VARE (like the V-A-R- in 'variable') CARE (like the C-H-A-R- in...
-Ken
May 22, 2003 at 11:54 am
While I would still stick with the general concensus of having one big raid 5 and no logical partititions - there is one advantage I can think of to having...
-Ken
February 12, 2003 at 2:52 pm
heh, you guys overlooked the best and most obvious resource! Lookup Reserved Keywords in SQL BOL and you'll find everything you're looking for, and then some.. including ODBC Reserved...
-Ken
December 5, 2002 at 10:14 am
I have the same consensus as everyone else regarding use of cursors. The only time I really use cursors is if I am manually handling data, it's rare to...
-Ken
November 27, 2002 at 12:23 pm
I put a lot of thought into my oltp server;
4 data channels (two 3200 smartarray controllers I think there's at least 4 dat channels, it's been awhile..),
1 going to...
-Ken
November 21, 2002 at 9:41 am
Viewing 15 posts - 61 through 75 (of 92 total)