Enable trace in standard EBS PLSQL pkg and know the path of the trace file

Hello

I want to activate the trace in the standard package of PLSQL EBS:

run immediately "alter session set sql_trace = TRUE";

How can I know the path of the trace file?
What is the name of the table to know the path of the file trace?

Thank you
Lavan

How to find the Trace file generated for a simultaneous program? [967966.1 ID]
How to trace a concurrent request and generate the TKPROF file [ID 453527.1]

path tracing

select value from v$parameter where name = 'user_dump_dest';

for the package, you can set the name of the trace file after "run immediately"alter session set sql_trace = TRUE";"

execute immediate 'alter session set tracefile_identifier="your_trace_file_name"';

Tags: Oracle Applications

Similar Questions

Maybe you are looking for