The documentation states that the trace file is located in the following directory:
1 2 3 4 5 6 7 8 9 | SQL> -- Run as SYSTEM SQL> SHOW PARAMETERS user_dump_dest NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ user_dump_dest string /usr/lib/oracle/xe/app/oracle/ admin/XE/udump |
This isn't the case if you're using the Embedded PL/SQL Gateway, which is how APEX is run on Oracle XE. Thanks to Jari for answering my question on the APEX forum about this: http://forums.oracle.com/forums/thread.jspa?forumID=137&threadID=1771547
For APEX installations that use the PL/SQL Embedded Gateway (i.e. Oracle XE) the trace file is located in the following directory:
1 2 3 4 5 6 7 8 | SQL> SHOW PARAMETER background_dump_dest NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ background_dump_dest string /usr/lib/oracle/xe/app/oracle/ admin/XE/bdump |
To find the trace file that was created for your session:
1 2 3 4 5 6 | $ cd /usr/lib/oracle/xe/app/oracle/admin/XE/bdump $ grep -l "APP_SESSION" *.trc #example $ grep -l "2603384364125271" *.trc |
Hi!
ReplyDeleteI have Apex 4.1 on Oracle 10.2.0.4 on Win 2003 x64.
On both places there is no tracefile at all.
Any ideas?
THX