透過ORADEBUG運用10046事件跟蹤SQL語句

hunterjoy發表於2010-10-25

透過ORADEBUG運用10046事件跟蹤SQL語句

檢視oradebug的幫助資訊:

SQL> oradebug help

SQL>select * from v$session_wait     ----查詢有問題的等待事件

SQL>select * from v$session where sid=''    根據上面語句取得SID查詢

SQL>select * from v$process where addr= '' 根據上面語句的PADDR取得

這樣可以查詢出PID,SPID(即OSPID)

SQL>oradebug setospid 5087252或SQL>oradebug setpid 63

oracle pid:63,Unix process pid:5087252,image:oracle@GSX_P595_2_P1(TNS V1-V3)

SQL> oradebug event 10046 trace name contextforever,level 12

Statement processed

SQL> oradebug event 10046 trace name context off

Statement processed

SQL> oradebug tracefile_name

/oracle/admin/.../udump/XXXX_ora_5087252.trc

然後檢視生成的檔案XXXX_ora_5087252.trc即可。

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

相關文章