SQL TRACE FILE
Enable the Trace:
ALTER SESSION SET SQL_TRACE=TRUE;
Identify the trace file path:
ALTER SESSION SET SQL_TRACE=TRUE;
Identify the trace file path:
select u_dump.value || '/' || db_name.value || '_ora_' || v$process.spid || nvl2(v$process.traceid, '_' || v$process.traceid, null ) || '.trc' "Trace File" from v$parameter u_dump cross join v$parameter db_name cross join v$process join v$session on v$process.addr = v$session.paddr where u_dump.name = 'user_dump_dest' and db_name.name = 'db_name' and v$session.audsid=sys_context('userenv','sessionid');In order to make a more informative trace file name, the following command can be used:
alter session set tracefile_identifier = here_is_my_session;
Generate TKPROF Output :
Comments
Post a Comment