Hi,
In order to find procs ran more than 1 minute in sql 2000 we do like this
select * from tracetable
where DURATION/60000 > 1
can anyone tell me what value i should use for 2005 trace duration,Because in sql 2000 it is saved as milliseconds but in sql2005 it is saved as microseconds.
In order to find procs ran more than 1 minute in sql 2000 we do like this
select * from tracetable
where DURATION/60000 > 1
can anyone tell me what value i should use for 2005 trace duration,Because in sql 2000 it is saved as milliseconds but in sql2005 it is saved as microseconds.