To trace other user's session prior to Oracle 10g use DBMS_SUPPORT package.
If the package is not available, run the following script.
SQL>@$ORACLE_HOME/rdbms/admin/dbmssupp.sql
Syntax
DBMS_SUPPORT.START_TRACE_IN_SESSION(sid, serial#, wait, bind)
DBMS_SUPPORT.STOP_TRACE_IN_SESSION(sid, serial#)
To start tracing
SQL> Exec DBMS_SUPPORT.START_TRACE_IN_SESSION (149,3643, TRUE, TRUE);
To stop tracing
SQL> Exec DBMS_SUPPORT.STOP_TRACE_IN_SESSION (149,3643);
Thanks
Wednesday, July 29, 2009
Subscribe to:
Post Comments (Atom)
1 comment:
Thanks for explaining to trace other user's session prior to Oracle 10g use DBMS_SUPPORT package. Also if the package is not available then can run other script also.
sap support costs
Post a Comment