Kill all processes of FNDLIBR.
ps -ef |grep FNDLIBR | grep -v grep | awk '{print $2}'
Kill:
ps -ef |grep FNDLIBR | grep -v grep | awk '{print $2}' | xargs kill -9
If you have multiple instances on the same server, you can use the below command to kill processes only of a particular user.
ps -fu username|grep FNDLIBR | grep -v grep | awk '{print $2}' | xargs kill -9
a) Concurrent Request Log:
select logfile_name from fnd_concurrent_requests where request_id = <request_id>;
b) Concurrent Output file:
select outfile_name from fnd_concurrent_requests where request_id = <request_id>;
c) Concurrent Manager Worker Log:
select logfile_name from fnd_concurrent_processes where concurrent_process_id=(select controlling_manager
from fnd_concurrent_requests where request_id=<request_id>);
d) FNDOPP log file
SELECT fcpp.concurrent_request_id req_id, fcp.node_name, fcp.logfile_name
FROM fnd_conc_pp_actions fcpp, fnd_concurrent_processes fcp
WHERE fcpp.processor_id = fcp.concurrent_process_id
AND fcpp.action_type = 6
AND fcpp.concurrent_request_id =<request_id>;
No comments:
Post a Comment