Viewing 15 posts - 31 through 45 (of 56 total)
Craig,
This is a very good solution on second read. I appreciate the comments. So if I set up the auto trace on the server itself and have it...
February 11, 2010 at 8:39 am
I suppose I could auto start a trace, but it's not worth the extra hit on the server for something that is of fairly minor importance.
Too much work and processing...
February 11, 2010 at 8:09 am
tracing doesn't do it because I need to constantly count # of queries of certain users, not for one day, but always.
It's used to report on trends of # of...
February 10, 2010 at 1:53 pm
It seems I cannot use an event notification. There is no trace event I can use to create the event notification with.
I tried using some of the SQL trace...
February 9, 2010 at 11:53 am
Jeff,
Thanks.
It works well.
Steve
February 8, 2010 at 7:47 am
I made a workaround using another table.
February 5, 2010 at 12:04 pm
persistently. We create reports for average query counts per hour for the current month and for previous months.
If I did the job, I doubt that statements would be swapped...
February 4, 2010 at 1:45 pm
Gail,
First - thanks for taking time to looking at this.
What I mean is I need to find what the average count of rows is per day, grouped by hour.
The table...
February 4, 2010 at 10:55 am
create table sg
(EventTime datetime)
insert into sg values('02/01/10 07:17:00')
insert into sg values('02/01/10 07:33:00')
insert into sg values('02/01/10 07:46:00')
insert into sg values('02/01/10 08:10:00')
insert into sg values('02/01/10 08:37:00')
insert into sg values('02/02/10 07:57:00')
insert into sg...
February 4, 2010 at 9:01 am
I implemented the event notification as described in http://www.sqlservercentral.com/articles/SQLServerCentral/sqlserver2005logontriggers/2366/
on a development database.
Referring to that link, suppose I want to limit the logins inserted into my table with a where clause...
February 3, 2010 at 11:52 am
I do not have the time to make the request to get admin rights to do this.
Thanks for the help anyway!
February 2, 2010 at 7:15 am
I tried the full UNC path. Still did not work.
I will try to get write privileges to that drive for the id that runs the sql server service and...
February 2, 2010 at 6:00 am
Yes, now I realize the MarkusB query is good.
Do we know if perfmon would give the same results if I looked for processor objects and counters?
I am not familiar...
January 28, 2010 at 12:55 pm
we are auditing failed logins, which go to the sql server error log.
I need successful logins to go to a table, so I can generate a report from it.
January 28, 2010 at 12:09 pm
I considered auditing successful logins, then reading the error log, but I prefer the other options which I think are easier in accomplishing what I want.
Only failed logins are being...
January 28, 2010 at 8:31 am
Viewing 15 posts - 31 through 45 (of 56 total)