玩轉跟蹤(to owner session、other session)
luocs@MAA> show parameter diag NAME TYPE VALUE ------------------------------------ ---------------------- ------------------------------ diagnostic_dest string /u01/app/oracle
sys@LTB> show parameter user_dump_dest NAME TYPE VALUE ------------------------------------ ---------------------- ------------------------------ user_dump_dest string /u01/app/oracle/admin/ltb/udump sys@LTB> show parameter background_dump_dest NAME TYPE VALUE ------------------------------------ ---------------------- ------------------------------ background_dump_dest string /u01/app/oracle/admin/ltb/bdump 或者透過查v$parameter獲得 sys@LTB> select name, value from v$parameter where name in ('user_dump_dest','background_dump_dest'); NAME VALUE ----------------------------------- ----------------------------------------------------------------- background_dump_dest /u01/app/oracle/admin/ltb/bdump user_dump_dest /u01/app/oracle/admin/ltb/udump
sys@MAA> select name, value from v$parameter where name in ('user_dump_dest','background_dump_dest'); NAME VALUE -------------------- ----------------------------------------------------------------- background_dump_dest /u01/app/oracle/diag/rdbms/maa/maa/trace user_dump_dest /u01/app/oracle/diag/rdbms/maa/maa/trace
sys@LTB> column trace new_val T sys@LTB> select c.value || '/' || d.instance_name || '_ora_' || 2 a.spid || '.trc' || 3 case when e.value is not null then '_'||e.value end trace 4 from v$process a, v$session b, v$parameter c, v$instance d, v$parameter e 5 where a.addr = b.paddr 6 and b.audsid = userenv('sessionid') 7 and c.name = 'user_dump_dest' 8 and e.name = 'tracefile_identifier' 9 / TRACE ------------------------------------------------------------------ /u01/app/oracle/admin/ltb/udump/ltb_ora_3471.trc
luocs@LTB> set serveroutput on size 1000000 for wra luocs@LTB> declare 2 paramname varchar2(256); 3 integerval binary_integer; 4 stringval varchar2(256); 5 paramtype binary_integer; 6 begin 7 paramtype:=dbms_utility.get_parameter_value('user_dump_dest',integerval,stringval); 8 if paramtype=1 then 9 dbms_output.put_line(stringval); 10 else 11 dbms_output.put_line(integerval); 12 end if; 13 end; 14 / /u01/app/oracle/admin/ltb/udump PL/SQL procedure successfully completed.
luocs@MAA> select value from v$diag_info where name = 'Default Trace File'; VALUE ---------------------------------------------------------------------------------------------------- /u01/app/oracle/diag/rdbms/maa/maa/trace/maa_ora_15852.trc
[root@primary ~]# ls -l /u01/app/oracle/admin/ltb/udump/ total 40 -rw-r----- 1 oracle oinstall 638 Jan 21 20:12 ltb_ora_27185.trc -rw-r----- 1 oracle oinstall 954 Jan 21 20:13 ltb_ora_27217.trc [luocs@primary ~]$ id uid=501(luocs) gid=502(luocs) groups=502(luocs) [luocs@primary ~]$ cat /u01/app/oracle/admin/ltb/udump/ltb_ora_27185.trc cat: /u01/app/oracle/admin/ltb/udump/ltb_ora_27185.trc: Permission denied
sys@MAA> set pagesize 9999 sys@MAA> set line 130 sys@MAA> col NAME for a20 sys@MAA> col VALUE for a20 sys@MAA> col DESCRIB for a80 sys@MAA> SELECT x.ksppinm NAME, y.ksppstvl VALUE, x.ksppdesc DESCRIB 2 FROM SYS.x$ksppi x, SYS.x$ksppcv y 3 WHERE x.inst_id = USERENV ('Instance') 4 AND y.inst_id = USERENV ('Instance') 5 AND x.indx = y.indx 6 AND x.ksppinm LIKE '%&par%' 7 / Enter value for par: _trace_files_public old 6: AND x.ksppinm LIKE '%&par%' new 6: AND x.ksppinm LIKE '%_trace_files_public%' NAME VALUE DESCRIB -------------------- -------------------- -------------------------------------------------------------------------------- _trace_files_public FALSE Create publicly accessible trace files
sys@LTB> alter system set "_trace_files_public"=TRUE scope=spfile; System altered. sys@LTB> startup force ORACLE instance started. Total System Global Area 520093696 bytes Fixed Size 2021984 bytes Variable Size 150996384 bytes Database Buffers 360710144 bytes Redo Buffers 6365184 bytes Database mounted. Database opened. sys@LTB> oradebug setmypid Statement processed. sys@LTB> oradebug tracefile_name /u01/app/oracle/admin/ltb/udump/ltb_ora_3608.trc sys@LTB> ! ls -l /u01/app/oracle/admin/ltb/udump/ltb_ora_3608.trc -rw-r--r-- 1 oracle oinstall 1752 Jan 21 20:39 /u01/app/oracle/admin/ltb/udump/ltb_ora_3608.trc
-- 獲取當前會話的SID,SERIAL# luocs@MAA> select sid, serial# from v$session where sid = (select sid from v$mystat where rownum=1); SID SERIAL# ---------- ---------- 41 1147 -- 獲取當前會話的PID和SPID luocs@MAA> select pid, spid from v$process p, v$session s where p.addr = s.paddr and s.sid=(select sid from v$mystat where rownum=1); PID SPID ---------- ------------------------------------------------ 24 16434 -- 獲取系統級別的SID與SERIAL#等 sys@MAA> select s.sid,s.serial#,s.username,s.osuser 2 from v$session s,v$process p 3 where s.paddr=p.addr; SID SERIAL# USERNAME OSUSER ---------- ---------- ---------- ---------- 2 1 oracle 3 1 oracle 4 1 oracle 5 1 oracle 6 1 oracle 7 1 oracle 8 1 oracle 9 1 oracle 10 1 oracle 11 1 oracle 12 1 oracle 13 1 oracle 14 1 oracle 15 1 oracle 16 1 oracle 17 1 oracle 18 1 oracle 20 1 oracle 23 23 oracle 28 271 oracle 41 1149 LUOCS oracle 53 21805 LUOCS oracle 25 7 oracle 27 1 oracle 40 1127 SYS oracle 29 5 oracle 30 1 oracle 34 1 oracle 22 11 oracle 44 21617 SYS oracle 47 833 XLZHGJ oracle 38 3 oracle 37 13 oracle 21 79 oracle 48 1303 oracle 35 rows selected.
luocs@MAA> select sid, serial# from v$session where sid = (select sid from v$mystat where rownum=1); SID SERIAL# ---------- ---------- 53 21805 luocs@MAA> exec dbms_system.set_bool_param_in_session(53,21805,'timed_statistics',true); PL/SQL procedure successfully completed. luocs@MAA> exec dbms_system.set_int_param_in_session(53,21805,'max_dump_file_size',20000000); PL/SQL procedure successfully completed. luocs@MAA> exec dbms_system.set_ev(53,21805,10046,12,''); PL/SQL procedure successfully completed. luocs@MAA> exec dbms_system.set_sql_trace_in_session(53,21805,true); PL/SQL procedure successfully completed. luocs@MAA> variable x number luocs@MAA> exec :l := 1 PL/SQL procedure successfully completed. luocs@MAA> select count(*) from test where id=:l; COUNT(*) ---------- 1 luocs@MAA> exec :l := 100 PL/SQL procedure successfully completed. luocs@MAA> select count(*) from test where id=:l; COUNT(*) ---------- 9999 luocs@MAA> exec dbms_system.set_sql_trace_in_session(53,21805,false); PL/SQL procedure successfully completed. luocs@MAA> exec dbms_system.set_ev(53,21805,10046,0,''); PL/SQL procedure successfully completed. luocs@MAA> select value from v$diag_info where name = 'Default Trace File'; VALUE ---------------------------------------------------------------------------------------------------- /u01/app/oracle/diag/rdbms/maa/maa/trace/maa_ora_15826.trc trace部分內容: ===================== PARSING IN CURSOR #47603153651720 len=21 dep=0 uid=51 oct=47 lid=51 tim=1359462720172941 hv=3459344829 ad='9ed28e20' sqlid='0haapcz732udx' BEGIN :l := 1; END; END OF STMT PARSE #47603153651720:c=0,e=670,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,plh=0,tim=1359462720172939 EXEC #47603153651720:c=2000,e=1491,p=0,cr=0,cu=0,mis=1,r=1,dep=0,og=1,plh=0,tim=1359462720174513 PARSE #47603153650544:c=0,e=26,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=1359462720174801 EXEC #47603153650544:c=0,e=186,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=1359462720175049 *** 2013-01-29 20:32:11.351 CLOSE #47603153651720:c=0,e=31,dep=0,type=0,tim=1359462731351173 CLOSE #47603153650544:c=0,e=38,dep=0,type=3,tim=1359462731351294 ===================== PARSING IN CURSOR #47603153651720 len=37 dep=0 uid=51 oct=3 lid=51 tim=1359462731351922 hv=874746037 ad='9ed283d0' sqlid='9pukpvhu2745p' select count(*) from test where id=:l END OF STMT PARSE #47603153651720:c=0,e=546,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,plh=0,tim=1359462731351921 EXEC #47603153651720:c=2000,e=2221,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,plh=4002023942,tim=1359462731354222 FETCH #47603153651720:c=0,e=170,p=0,cr=2,cu=0,mis=0,r=1,dep=0,og=1,plh=4002023942,tim=1359462731354557 STAT #47603153651720 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=2 pr=0 pw=0 time=174 us)' STAT #47603153651720 id=2 cnt=1 pid=1 pos=1 obj=25916 op='INDEX RANGE SCAN INX_TEST_ID (cr=2 pr=0 pw=0 time=146 us cost=1 size=3 card=1)' FETCH #47603153651720:c=0,e=1,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,plh=4002023942,tim=1359462731354893 PARSE #47603153650544:c=0,e=28,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=1359462731355442 EXEC #47603153650544:c=0,e=206,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=1359462731355711 *** 2013-01-29 20:32:17.365 CLOSE #47603153651720:c=0,e=13,dep=0,type=0,tim=1359462737365691 CLOSE #47603153650544:c=0,e=25,dep=0,type=3,tim=1359462737365809
luocs@MAA> select sid, serial# from v$session where sid = (select sid from v$mystat where rownum=1); SID SERIAL# ---------- ---------- 53 21807 sys@MAA> exec dbms_support.start_trace_in_session(53,21807,waits=>false,binds=>true); PL/SQL procedure successfully completed. luocs@MAA> variable x number luocs@MAA> exec :l := 100 PL/SQL procedure successfully completed. luocs@MAA> select count(*) from test where id=:l 2 ; COUNT(*) ---------- 9999 sys@MAA> exec dbms_support.stop_trace_in_session(53,21807); PL/SQL procedure successfully completed. luocs@MAA> select value from v$diag_info where name = 'Default Trace File'; VALUE ---------------------------------------------------------------------------------------------------- /u01/app/oracle/diag/rdbms/maa/maa/trace/maa_ora_16974.trc -- 部分TRACE內容 ===================== PARSING IN CURSOR #47953679205472 len=38 dep=0 uid=51 oct=3 lid=51 tim=1359464472023679 hv=3115683868 ad='9e731000' sqlid='fsa2yt2wvb40w' select count(*) from test where id=:l END OF STMT PARSE #47953679205472:c=999,e=984,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,plh=0,tim=1359464472023678 BINDS #47953679205472: Bind#0 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00 oacflg=03 fl2=1000000 frm=00 csi=00 siz=24 off=0 kxsbbbfp=2b9d16045340 bln=22 avl=02 flg=05 value=100 EXEC #47953679205472:c=2999,e=2765,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,plh=3727996439,tim=1359464472026526 FETCH #47953679205472:c=3000,e=2883,p=0,cr=62,cu=0,mis=0,r=1,dep=0,og=1,plh=3727996439,tim=1359464472029485 STAT #47953679205472 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=62 pr=0 pw=0 time=2884 us)' STAT #47953679205472 id=2 cnt=9999 pid=1 pos=1 obj=25916 op='INDEX FAST FULL SCAN INX_TEST_ID (cr=62 pr=0 pw=0 time=2190 us cost=11 size=29997 card=9999)' FETCH #47953679205472:c=0,e=2,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,plh=3727996439,tim=1359464472029832 PARSE #47953679348848:c=0,e=29,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=1359464472030399 BINDS #47953679348848: Bind#0 oacdty=123 mxl=4000(4000) mxlc=00 mal=00 scl=00 pre=00 oacflg=00 fl2=1000000 frm=00 csi=00 siz=4000 off=0 toid ptr value=A1E4A4A0 length=16 C7D9741553643AE0E0430100007F2FB7 kxsbbbfp=2b9d1605df70 bln=4000 avl=00 flg=15 Bind#1 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00 oacflg=01 fl2=1000000 frm=00 csi=00 siz=24 off=0 kxsbbbfp=2b9d1605f310 bln=22 avl=22 flg=05 value=### An invalid number has been seen.Memory contents are : Dump of memory from 0x00002B9D1605F310 to 0x00002B9D1605F326 2B9D1605F310 000010C1 00000000 00000000 00000000 [................] 2B9D1605F320 00000000 00000000 [........] EXEC #47953679348848:c=0,e=393,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=1359464472030861 -- 跟蹤當前會話 sys@MAA> grant execute on dbms_support to luocs; Grant succeeded. luocs@MAA> SELECT DBMS_SUPPORT.MYSID from DUAL; SELECT DBMS_SUPPORT.MYSID from DUAL * ERROR at line 1: ORA-00904: "DBMS_SUPPORT"."MYSID": invalid identifier -- 這時候發現普通使用者無法執行,我們需要如下授權 sys@MAA> grant execute on dbms_support to luocs; Grant succeeded. sys@MAA> CREATE PUBLIC SYNONYM dbms_support FOR dbms_support; Synonym created. luocs@MAA> SELECT DBMS_SUPPORT.MYSID from DUAL; MYSID ---------- 53 luocs@MAA> exec dbms_support.start_trace(waits=>true,binds=>false); PL/SQL procedure successfully completed. luocs@MAA> select count(*) from test; COUNT(*) ---------- 10000 luocs@MAA> exec dbms_support.stop_trace; PL/SQL procedure successfully completed. -- trace部分內容 ===================== PARSING IN CURSOR #47179837486632 len=25 dep=0 uid=51 oct=3 lid=51 tim=1359465350267384 hv=297253644 ad='9ed2c088' sqlid='7b2twsn8vgfsc' select count(*) from test END OF STMT PARSE #47179837486632:c=0,e=144,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=1950795681,tim=1359465350267383 EXEC #47179837486632:c=0,e=57,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=1950795681,tim=1359465350267512 WAIT #47179837486632: nam='SQL*Net message to client' ela= 2 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=1359465350267576 FETCH #47179837486632:c=2000,e=1851,p=0,cr=37,cu=0,mis=0,r=1,dep=0,og=1,plh=1950795681,tim=1359465350269457 STAT #47179837486632 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=37 pr=0 pw=0 time=1832 us)' STAT #47179837486632 id=2 cnt=10000 pid=1 pos=1 obj=25886 op='TABLE ACCESS FULL TEST (cr=37 pr=0 pw=0 time=6947 us cost=12 size=0 card=10000)' WAIT #47179837486632: nam='SQL*Net message from client' ela= 164 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=1359465350269784 FETCH #47179837486632:c=0,e=2,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,plh=1950795681,tim=1359465350269824 WAIT #47179837486632: nam='SQL*Net message to client' ela= 1 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=1359465350269849 WAIT #47179837486632: nam='SQL*Net message from client' ela= 458 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=1359465350270323 PARSE #47179837532376:c=0,e=29,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=1359465350270400 WAIT #47179837532376: nam='SQL*Net message to client' ela= 1 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=1359465350270667 EXEC #47179837532376:c=0,e=239,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=1359465350270709
-- 使用傳統方式,透過SID和SERIAL#來跟蹤會話 luocs@MAA> select sid, serial# from v$session where sid = (select sid from v$mystat where rownum=1); SID SERIAL# ---------- ---------- 53 21813 -- 啟動跟蹤 sys@MAA> exec DBMS_MONITOR.SESSION_TRACE_ENABLE(53,21813,true,true); PL/SQL procedure successfully completed. luocs@MAA> variable x number luocs@MAA> exec :l := 1; PL/SQL procedure successfully completed. luocs@MAA> select count(*) from test where id=:l; COUNT(*) ---------- 1 -- 停止跟蹤 sys@MAA> exec DBMS_MONITOR.SESSION_TRACE_DISABLE(53,21813); PL/SQL procedure successfully completed. TRACE內容略。
Parameter |
Description |
session_id |
Client Identifier for which SQL trace is enabled. If omitted (or NULL), the user's own session is assumed. |
serial_num |
Serial number for this session. If omitted (or NULL), only the session ID is used to determine a session. |
waits |
If TRUE, wait information is present in the trace |
binds |
If TRUE, bind information is present in the trace |
plan_stat |
Frequency at which we dump row source statistics. Value should be 'NEVER', 'FIRST_EXECUTION' (equivalent to NULL) or 'ALL_EXECUTIONS'. |
下面是我一個使用例子 luocs@WWW> BEGIN 2 DBMS_SESSION.SET_IDENTIFIER(''); 3 DBMS_MONITOR.CLIENT_ID_TRACE_ENABLE 4 (CLIENT_ID => '', 5 WAITS => TRUE 6 ); 7 END; 8 / PL/SQL procedure successfully completed. luocs@WWW> select /*+ parallel(3) */ count(*) from test1; COUNT(*) ---------- 456128 luocs@WWW> exec DBMS_MONITOR.CLIENT_ID_TRACE_DISABLE(''); PL/SQL procedure successfully completed. sys@WWW> select client_identifier from v$session where sid=(select sid from v$mystat where rownum=1); CLIENT_IDENTIFIER ---------------------------------------------------------------------------------------------------- www.luocs.com sys@WWW> col PRIMARY_ID for a30 sys@WWW> select trace_type, primary_id, waits, binds from dba_enabled_traces; TRACE_TYPE PRIMARY_ID WAITS BINDS ------------------------------------------ ------------------------------ ---------- ---------- CLIENT_ID www.luocs.com TRUE FALSE [oracle@rac1 ~]$ cd /u01/app/oracle/diag/rdbms/www/ltb1/trace/ [oracle@rac1 trace]$ trcsess clientid=www.luocs.com output=luocs_test2.trc [oracle@rac1 trace]$ ls luocs_test2.trc -rw-r--r-- 1 oracle oinstall 103514 Jan 27 07:06 luocs_test2.trc -- trace內容略
-- SESSION_TRACE_ENABLE/DISABLE過程可以設定等待和變數跟蹤 luocs@MAA> exec DBMS_SESSION.SESSION_TRACE_ENABLE(TRUE,TRUE); luocs@MAA> exec DBMS_SESSION.SESSION_TRACE_ENABLE(WAITS=>TRUE, BINDS=>TRUE); luocs@MAA> variable x number luocs@MAA> exec :l := 100 PL/SQL procedure successfully completed. luocs@MAA> select count(*) from test where id=:l; COUNT(*) ---------- 9999 -- 停止跟蹤 luocs@MAA> exec DBMS_SESSION.SESSION_TRACE_DISABLE(); -- trace內容略 -- SET_SQL_TRACE過程好比alter session set sql_trace=true|false luocs@MAA> exec DBMS_SESSION.SET_SQL_TRACE(TRUE); PL/SQL procedure successfully completed. luocs@MAA> variable x number luocs@MAA> exec :l := 100 PL/SQL procedure successfully completed. luocs@MAA> select count(*) from test where id=:l; COUNT(*) ---------- 9999 luocs@MAA> exec DBMS_SESSION.SET_SQL_TRACE(FALSE); PL/SQL procedure successfully completed. -- trace內容裡看不到繫結變數和等待的資訊
system@MAA> show user USER is "SYSTEM" system@MAA> oradebug setmypid ORA-01031: insufficient privileges
sys@MAA> oradebug setmypid sys@MAA> oradebug unlimit sys@MAA> oradebug event 10046 trace name context forever, level 12 sys@MAA> exec our code sys@MAA> oradebug event 10046 trace name context off sys@MAA> oradebug tracefile_name /u01/app/oracle/diag/rdbms/maa/maa/trace/maa_ora_17641.trc
luocs@MAA> select pid, spid from v$process p, v$session s where p.addr = s.paddr and s.sid=(select sid from v$mystat where rownum=1); PID SPID ---------- ------------------------------------------------ 25 17678 -- 指定跟蹤SESSION的SPID(OS process) sys@MAA> oradebug setospid 17678 Oracle pid: 25, Unix process pid: 17678, image: oracle@maa3.luocs.com (TNS V1-V3) -- 或者指定跟蹤SESSION的PID(Oracle process ID) sys@MAA> oradebug setorapid 25 Oracle pid: 25, Unix process pid: 17678, image: oracle@maa3.luocs.com (TNS V1-V3) sys@MAA> oradebug unlimit sys@MAA> oradebug event 10053 trace name context forever, level 1 sys@MAA> exec our code sys@MAA> oradebug event 10053 trace name context off sys@MAA> oradebug tracefile_name
-- AUTOTRACE luocs@MAA> set autotrace on luocs@MAA> set autotrace on explain luocs@MAA> set autotrace on statistics luocs@MAA> set autotrace traceonly luocs@MAA> set autotrace traceonly explain luocs@MAA> set autotrace traceonly explain statistics luocs@MAA> set autotrace off 我喜歡使用縮略方式,比如 luocs@MAA> set autot trace exp stat -- 10053 EVENTS luocs@MAA> alter session set events '10053 trace name context forever, level 1'; luocs@MAA> alter session set events '10053 trace name context off'; sys@MAA> oradebug event 10053 trace name context forever, level 1 sys@MAA> oradebug event 10053 trace name context off
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25462274/viewspace-2120564/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle session(會話) 跟蹤OracleSession會話
- 對session進行跟蹤Session
- 用oracle trace 來跟蹤sessionOracleSession
- alter session set events /Oracle跟蹤SessionOracle
- 跟蹤session 與 trace檔案分析Session
- 跟蹤SESSION 與 trace 檔案解析Session
- 用oracle trace 來跟蹤session 活動OracleSession
- session跟蹤失效的問題和原因Session
- 使用sqltrace跟蹤session執行的sqlSQLSession
- read by other session等待事件Session事件
- read by other session 測試Session
- 等待事件:read by other session事件Session
- 【等待事件】read by other session事件Session
- 關於oracle中session跟蹤的總結OracleSession
- read by other session 等待事件分析Session事件
- 等待模擬-read by other sessionSession
- Wait event:read by other sessionAISession
- read by other session在undo所想Session
- Oracle SQL 跟蹤 --- dbms_system.set_sql_trace_in_sessionOracleSQLSession
- Buffer busy waits/read by other sessionAISession
- 關於等待事件"read by other session"事件Session
- read by other session等待事件模擬Session事件
- 使用dbms_monitor.session_trace_enable跟蹤一個會話Session會話
- read by other session的優化記錄Session優化
- 【效能調整】等待事件read by other session事件Session
- 使用logon trigger完成動態的session跟蹤GoSession
- 2篇對session產生sql跟蹤資訊的不錯的文章!SessionSQL
- Session跟蹤機制是怎樣的?網路安全技術學習Session
- oracle中session跟process的研究OracleSession
- session轉載Session
- 玩轉spring boot——負載均衡與session共享Spring Boot負載Session
- 【TUNE_ORACLE】等待事件之IO等待“read by other session”Oracle事件Session
- Oracle Dba必須瞭解的Read By Other Session等待:OracleSession
- 等待事件_buffer_busy_waits_and_read_by_other_session(1)事件AISession
- 等待事件_buffer_busy_waits_and_read_by_other_session(2)事件AISession
- 等待事件_buffer_busy_waits_and_read_by_other_session(3)事件AISession
- 等待事件_buffer_busy_waits_and_read_by_other_session(4)事件AISession
- 【kill session】Oracle 徹底 kill session(轉載)SessionOracle