| Program | Description | Notes |
| CLIENT_ID_TRACE_ENABLE |
Enable / Disable Tracing for A given Client Identifier |
|
| CLIENT_ID_TRACE_DISABLE | ||
|
Enable
tracing for CLIENT_IDENTIFIER johnny:127.0.0.2 with wait information but no bind information EXECUTE DBMS_MONITOR.CLIENT_ID_TRACE_ENABLE('johnny:127:0.0.2',TRUE,FALSE);
|
||
| SERV_MOD_ACT_TRACE_ENABLE |
Enable / Disable Tracing for (Service Name/ MODULE/ACTION) combination.
|
|
| SERV_MOD_ACT_TRACE_DISABLE | ||
|
Enable tracing for
servide_name HR but only for the ADDEMPLOYEE module and include wait and bind information. EXECUTE DBMS_MONITOR.SERV_MOD_ACT_TRACE_ENABLE('HR','ADDEMPLOYEE', DBMS_MONITOR.ALL_ACTIONS,TRUE,TRUE,NULL);
|
||
| SESSION_TRACE_ENABLE |
Enable / Disable Tracing for a session identifier (SID) |
|
| SESSION_TRACE_EISABLE | ||
Enable tracing for session id 142 and
include wait and bind information
EXECUTE DBMS_MONITOR.SESSION_TRACE_ENABLE(145,34, TRUE, TRUE); |
||