Viewing 15 posts - 5,761 through 5,775 (of 6,105 total)
There is a Microsoft Knowledge Base article that seems applicable to the error you are getting. Take a look at this and see if it matches your situation:
http://support.microsoft.com/directory/article.asp?ID=KB;EN-US;Q285833
Let us...
January 31, 2002 at 7:21 pm
You are correct, sir. Time to email someone.
K. Brian Kelley
January 31, 2002 at 2:26 pm
I would hope the without should have been with. Running without a password isn't smart, even in development. There's even been a worm developed to exploit this.
K. Brian...
January 31, 2002 at 12:56 pm
The datetime data type is going to store the milliseconds, it's part of the data type. However, if you want to eliminate milliseconds, you might want to do something...
January 31, 2002 at 8:22 am
Yes, you can install SQL Server 2000 on a laptop. My personal machine is a laptop and I've got Developer Edition (MSDN) running on it as we speak.
As for...
January 30, 2002 at 7:55 pm
Triggers in SQL Server 7 and AFTER triggers in SQL 2K do not support text or ntext data types. INSTEAD OF triggers for SQL 2K do. Here's more:
http://www.sqlservercentral.com/columnists/bkelley/triggerswhatsnew.asp
K....
January 30, 2002 at 3:37 pm
I've had to use multiple collations on a couple of occasions (certain apps we run use binary sort order) and have not run into any issues. However, I've been...
January 30, 2002 at 9:57 am
The information is stored in the system tables, but Microsoft reserves the right to change them at any time. The Information Schema views are mandate by the SQL-92 standard...
January 30, 2002 at 9:54 am
What happens if we replace AVG(MyID) with AVG(CAST(MyID AS Decimal(9,2))) to ensure SQL is averaging a decimal value?
K. Brian Kelley
January 30, 2002 at 8:55 am
Paul and I are thinking along the same lines:
SELECT ET.*
FROM cmsEmployeeTime ET
JOIN cmsEmployee E
ON ET.EMPTIM_EmployeeID = E.EMP_EmployeeID
LEFT JOIN cmsEmployeeTimeCompare ETC
ON ET.EMPTIM_EmployeeID = ETC.EMPTIM_EmployeeID
AND ET.EMPTIM_DateWorked = ETC.EMPTIM_DateWorked
AND ET.EMPTIM_WorkPlan...
January 30, 2002 at 8:53 am
Are you looking for an identical match across all fields or are you just looking for a match based on primary key? If it is a match on the primary...
January 30, 2002 at 8:16 am
If you are using SQL 7.0 or 2000, Profiler can be your best friend. I've gotten burnt the same way and the next time after...
January 30, 2002 at 8:06 am
The way this is written, the only way the where clause is going to evaluate to true is if there are no records present in (select * from cmsemployeetimecompare). ...
January 30, 2002 at 8:02 am
Another approach:
DECLARE @n int
DECLARE @sql nvarchar(255)
SET @n = (SELECT COUNT(*) FROM MyTable)
IF @n % 2 = 0
IF @n = 2
SET @sql = 'SELECT AVG(MyID) Median FROM MyTable'
ELSE
SET @sql = 'SELECT...
January 29, 2002 at 8:30 pm
Viewing 15 posts - 5,761 through 5,775 (of 6,105 total)