oracle 10046其他使用者會話

chenoracle發表於2015-06-26

授權

conn /as sysdba

grant execute on dbms_system to chen; 


首先檢視要跟蹤使用者的sid,serial#

select sid,serial#,username from v$session where username is not null;


開啟跟蹤
SQL>execute sys.dbms_system.set_ev(7,36,10046,12,'');

執行語句
create table aa(id number;
alter table aa add(sal number);
drop table aa;

關閉10046追蹤

SQL>execute sys.dbms_system.set_ev(7,36,10046,0,'');
當退出當前會話的時候,Oracle就會將追蹤的結果寫入到trace檔案目錄
使用Oracle提供的tkprof來格式化開啟追蹤檔案,進行分析,如下:
tkprof ora_2229_10046.trc 888.trc
vim 888.trc
歡迎關注我的微信公眾號"IT小Chen",共同學習,共同成長!!!

oracle 10046其他使用者會話

oracle 10046其他使用者會話





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

相關文章