Finding Oracle Concurrent Request Log Files:
Finding Oracle Apache Log Files:
Finding Forms & Reports Log Files:
Finding Oracle Alert Log Files:
Location
$ORACLE_HOME/ADMIN/$CONTEXT_NAME/BDUMP/ALERT_$SID.LOG
Finding Oracle Network Log Files:
Location
$ORACLE_HOME/NETWORK/ADMIN/$SID.LOG
Finding Oracle Cloning Related Log Files:
Finding Patching Related Log Files:
Finding Autoconfig Related Log Files:
Finding Oracle Relink Log Files:
Location
$ORACLE_HOME/APPSUTIL/LOG/$CONTEXT_NAME /MMDDHHMM/ MAKE_$MMDDHHMM.LOG
Finding Oracle OUI Log Files:
Location
$ORACLE_HOME/ADMIN/OUI/$CONTEXT_NAME/ORAINVENTORY/LOGS
Concurrent Mangers log files are located in the $APPLCSF/$APPLLOG location.
cd $APPLCSF/$APPLLOG
For ICM Log –> ls -lrt *$TWO_TASK*
For Standard manager Log –> ls -lrt w*.mgr
For Conflict Resolution manager Log –> ls -lrt c*.mgr
We can also get the ICM manager logfile location with below query
SELECT ‘ICM_LOG_NAME=’ || fcp.logfile_name
FROM fnd_concurrent_processes fcp, fnd_concurrent_queues fcq
WHERE fcp.concurrent_queue_id = fcq.concurrent_queue_id
AND fcp.queue_application_id = fcq.application_id
AND fcq.manager_type = ‘0’
AND fcp.process_status_code = ‘A’;