WINDOWS ORACLE 後臺程式

wmlm發表於2009-01-12
windows 平臺下,查詢ORACLE的執行緒[@more@]

1 下載並使用pslist工具,檢視oracle.exe 所包含的執行緒
D:softPsTools2>pslist -d oracle

pslist v1.28 - Sysinternals PsList
Copyright ? 2000-2004 Mark Russinovich
Sysinternals

Thread detail for WW-HTJS:


oracle 2284:
Tid Pri Cswtch State User Time Kernel Time Elapsed Time
2640 9 927 Wait:Executive 0:00:00.015 0:00:00.125 0:01:08.265
860 8 1203 Wait:UserReq 0:00:00.015 0:00:00.046 0:01:07.609
1972 9 6 Wait:UserReq 0:00:00.000 0:00:00.000 0:01:07.375
1412 8 716 Wait:UserReq 0:00:00.000 0:00:00.046 0:01:02.078
3356 8 500 Wait:UserReq 0:00:00.000 0:00:00.015 0:01:01.765
556 8 583 Wait:UserReq 0:00:00.000 0:00:00.062 0:01:01.453
1920 9 263 Wait:UserReq 0:00:00.000 0:00:00.000 0:01:01.140
2552 8 534 Wait:UserReq 0:00:00.015 0:00:00.000 0:01:00.828
1400 9 7 Wait:UserReq 0:00:00.000 0:00:00.000 0:01:00.515
644 8 78 Wait:UserReq 0:00:00.015 0:00:00.015 0:01:00.203
2104 8 636 Wait:UserReq 0:00:00.000 0:00:00.000 0:00:59.859
2424 8 101 Wait:UserReq 0:00:00.000 0:00:00.015 0:00:59.546
584 10 7 Wait:Queue 0:00:00.000 0:00:00.000 0:00:58.593

2 登入資料庫,檢視執行緒ID所對應的後臺程式名稱
select p.PID, p.SPID, b.name
from v$process p, v$bgprocess b
where p.ADDR = b.PADDR;

1 2 1412 PMON
2 3 3356 DBW0
3 4 556 LGWR
4 5 1920 CKPT
5 6 2552 SMON
6 7 1400 RECO
7 8 644 CJQ0
8 9 2104 ARC0
9 10 2424 ARC1

3 如果查詢客戶端連線所對應的執行緒,比如某個連線佔用過多資源
使用作業系統的 thread,關聯v$process.spid進行查詢。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/271063/viewspace-1016038/,如需轉載,請註明出處,否則將追究法律責任。

相關文章