Viewing 8 posts - 1 through 8 (of 8 total)
When & where possible, I prefer to replace the pesky quote ASCII code CHAR(39),
with CHAR(146) or CHAR(145) and put an end to the madness of chasing and reacting
to...
February 6, 2004 at 3:49 pm
I was told yesterday by my MS SQL rep on an incident report I'm working through that I should NOT use the /3gb switch in the boot.ini of 2003 Server EE with...
January 29, 2004 at 6:43 am
Yes, plus one was supposed to be there! My apologies, for some unknown reason I do not see a plus sign in the reply preview window; and I was...
December 22, 2003 at 10:44 pm
A minor refinement of noeld's excellent second suggestion:
SELECT
q1a, q1b, q1c, q1d
, q2a, q2b, q2c, q2d
FROM mytable
WHERE
CASE
WHEN ( q1a + q1b + q1c + q1d ) / 4...
December 22, 2003 at 10:16 pm
I'm unclear what database system you're using or why
you'd use a non-numeric datatype, but something like
this would work using SQL Server. HTH.
SELECT
CASE WHEN mx =...
December 21, 2003 at 6:52 pm
December 6, 2003 at 7:44 pm
November 24, 2003 at 10:16 pm
You might enjoy trying this too:
DECLARE @missingLink varchar(1600)
SELECT @missingLink = coalesce( @missingLink, ' ' ) + '
INSERT @tbl ( lnkservername, productdata )( SELECT * FROM OPENQUERY( ' + srvname
+...
October 22, 2003 at 7:46 pm
Viewing 8 posts - 1 through 8 (of 8 total)