Viewing 15 posts - 1 through 15 (of 22 total)
Cheers Guys
Thanks for your help
David's Query works perfectly
SELECT count(distinct(performed_by_user_id)) as 'No of distinct Users',
CONVERT(varchar(11),event_date) as 'Date'
FROM tablename
WHERE condition
GROUP BY CONVERT(varchar(11),event_date),CONVERT(varchar(10),event_date,120)
ORDER BY CONVERT(varchar(10),event_date,120)
December 1, 2002 at 5:07 pm
i had tried that already but the problem i have problems as in message below
Column name 'tablename.event_date' is invalid in the ORDER BY clause because it is not contained in...
November 28, 2002 at 6:42 pm
Could the folling be something to do with it ?
FROM BOL
Quoted identifiers are used by default in SQL Server 2000, that is, they are set to ON. This is different...
April 16, 2002 at 12:17 am
The Procedure is being run against a sql 7 Database. The only thing different is that is that its now being run using SQL 2000 Analyzer.
April 15, 2002 at 11:12 pm
CREATE PROC DBO.Copydb
@TARGET_DB VARCHAR (100) = 'SDS093.COPYTEST',
@SOURCE_DB VARCHAR (100) = 'SDS_DBServer.DBNAMEOUT' ,
@PROJECT2COPYVARCHAR (100) = "'-'" ,
@PROJECT_LISTVARCHAR (255) = "'-'" ,
@LANGUAGE_LISTVARCHAR (255) = "'-'"
AS
DECLARE @TSQLSTMT VARCHAR (3000)
--...
April 15, 2002 at 9:15 pm
The process above is implemented on all production servers. Even though all documentation says that full log dumps are being carried out every 15 mins.
From what i can see full...
March 25, 2002 at 6:29 pm
Sorry i forgot to include a Question mark.
For SQL Server 2000 Enterprise Edition, is the following the full list of Service packs + Hotfixes etc ??
November 6, 2001 at 10:21 am
You should be able to just unclick the identity property in Enterprise manager and click save.
I Would generally unload to a temp table drop table, create altered table and reload...
October 23, 2001 at 8:42 am
Is there a trade off, if you are using monitoring software, because of the monitoring tool using resources ?
October 15, 2001 at 6:39 am
This problem came about WIN2K settings were too tight. is there any doc etc that detail how to lock down NT without causing problems to SQL ?
September 25, 2001 at 9:08 am
ok, finally an answer to this.
Go to Local security policy / Account policies / password policy / Passwords must meet complexity requirements was enabled .
set this to disabled.
plus in...
September 25, 2001 at 8:58 am
As an update to this topic, I think the security on WIN2K was set too tight and will try to verify this by doing an install of ss7 on an...
September 24, 2001 at 7:24 am
Thanks guys, for all your help
September 21, 2001 at 4:16 am
Viewing 15 posts - 1 through 15 (of 22 total)