Viewing 6 posts - 1 through 6 (of 6 total)
I want to correct myself better to use base counter for Average Wait time:
select AverageWaitTime for _Total instance and divide to Average Wait time Base for _Total instance.
there are some...
June 23, 2015 at 1:58 am
Try to use Delta to calculate Average Wait Time per second:
something like this :
select * into #temp1 from sys.dm_os_performance_counters
where counter_name like 'Average Wait Time (ms)%'
waitfor delay '00:00:30'
select * into #temp2...
June 23, 2015 at 1:12 am
If You are using SQL 2005 there is an Event Notification that can be used -DEADLOCK_GRAPH
you can use Service Broker to log every deadlock info into table ,information is complete...
June 12, 2008 at 1:00 am
I want WMI alert not an activation procedure , becasue if Queue is disabled Activation procedure is not started, and i want to catch cases when Queue is disabled.
I think...
April 4, 2008 at 7:31 am
Yes there is no problem to setup Event Notification for BROKER_QUEUE_DISABLED
but i want to set up Alert and Response Job , instead of EventNotification and Activation Procedure
April 4, 2008 at 3:38 am
use Set nocount on
before Insert statement
and set nocount off
after Insert Statement
December 14, 2005 at 7:22 am
Viewing 6 posts - 1 through 6 (of 6 total)