Viewing 15 posts - 466 through 480 (of 5,356 total)
Thanks. And the moment where SQL Server might not support this old syntax style might come sooner as one might think.
As for the WHERE clause. AFAIK, is this valid ANSI...
April 22, 2005 at 2:04 pm
Not sure if I understand completely, but if all you're asking for is to find gaps in a sequence, this is an easy task having a numbers table. I'll use...
April 22, 2005 at 1:44 pm
Modify your table structure. Sounds like some of the columns are *really* wide. See if this helps explaining http://www.sqlservercentral.com/columnists/sjones/pagesize.asp
April 22, 2005 at 1:18 pm
If you have AWE enabled, see if this helps: http://support.microsoft.com/kb/838459/en-us
If not, I would contact PSS.
April 22, 2005 at 3:10 am
See if these will help
http://www.microsoft.com/sql/techinfo/administration/2000/scalabilityfaq.asp
http://www.microsoft.com/sql/techinfo/administration/2000/rosetta.asp
http://www.microsoft.com/technet/prodtechnol/sql/2000/plan/ssmsam.mspx
http://www.microsoft.com/sql/techinfo/administration/2000/scalability.asp
And as RAID 5 has been...
April 22, 2005 at 2:12 am
This is the old JOIN syntax. You better forget about it and SQL Server. Read this http://www.microsoft.com/sql/techinfo/tips/development/July23.asp
April 22, 2005 at 1:23 am
FWIW, there are some funny annoyances possible when using ISNUMERIC.
SELECT
ISNUMERIC('$') AS Money_1
,ISNUMERIC('2d3') AS Float_1
, ISNUMERIC('$+,') AS Money_2
Money_1 Float_1 Money_2
----------- ----------- -----------
1 1 1
(1 row(s) affected)
April 22, 2005 at 1:13 am
Why do you think it's an overkill? If you can do so, I think that is the easiest solution. Anyway, CHECKIDENT won't help you much here, as it will only reseed...
April 21, 2005 at 8:36 am
Why does this work? First, we're taking advantage of the fact, that, with respect to our question, both 19000421 and 20050421 are equal. Both will return "April" as...
April 21, 2005 at 7:30 am
DBNetGrid is a software that you use to present data from a database in a browser environment. It has not really much to do with a database. And you need to...
April 21, 2005 at 7:27 am
btw, here's a nice trick, to get the month name from DATEPART
DECLARE @input INT
SET @input = MONTH(GETDATE())
SELECT
DATENAME(MONTH,@input*28) AS CurrentMonth
CurrentMonth
------------------------------
April
(1 row(s) affected)
April 21, 2005 at 7:03 am
Get used to use an indepedent and safe date format. See if these help:
April 21, 2005 at 7:01 am
Viewing 15 posts - 466 through 480 (of 5,356 total)