Trace your session:
Enabling trace:
Enable the SQL Trace facility for the session by using one of the following:
1) EXEC DBMS_SESSION.SESSION_TRACE_ENABLE(waits => TRUE, binds => FALSE);
Disabling trace:
EXEC DBMS_SESSION.SESSION_TRACE_DISABLE();
Easily identifying your trace files:
alter session set tracefile_identifier='mysession';
Enabling trace:
Enable the SQL Trace facility for the session by using one of the following:
1) EXEC DBMS_SESSION.SESSION_TRACE_ENABLE(waits => TRUE, binds => FALSE);
2) ALTER SESSION SET SQL_TRACE = TRUE;
3) DBMS_SESSION.SET_SQL_TRACE
EXEC DBMS_SESSION.SESSION_TRACE_DISABLE();
Easily identifying your trace files:
alter session set tracefile_identifier='mysession';
No comments:
Post a Comment