Ryan, 

Check out "DBCC SQLPERF(WAITSTATS)", and also take a look at the
"sysprocesses" table - with columns waittype, waittime, lastwaittype and
SPID. Something like:

SELECT spid AS SPID, waittype AS WaitType, waittime AS WaitTime,
lastwaittype AS LastWaitType
  FROM sysprocesses
 WHERE (spid > 50) 
   AND (waittime > 0)

A good comprehensive overview of the wait types is here:

http://sqldev.net/misc/WaitTypes.htm

HTH

Mark

Mark Leith
Cool-Tools UK Limited
http://www.cool-tools.co.uk



-----Original Message-----
[EMAIL PROTECTED]
Sent: 21 January 2004 13:35
To: Multiple recipients of list ORACLE-L


anyone know? 

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: <[EMAIL PROTECTED]
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Mark Leith
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

Reply via email to