Monday, 16 October 2023
EBS : SQL to find SID from Concurrent Request ID
SELECT a.request_id, d.sid, d.serial# ,d.osuser,d.process , c.SPID ,d.inst_id
FROM apps.fnd_concurrent_requests a
left outer join apps.FND_CONCURRENT_PROCESSES b on a.controlling_manager = b.concurrent_process_id
left outer join GV$PROCESS c on c.pid = b.oracle_process_id
left outer join GV$SESSION d on b.session_id=d.audsid
WHERE a.request_id =&ccr_req_id
Subscribe to:
Post Comments (Atom)
Oracle : Database Startup Time
Oracle Instance Startup Time SET LINES 2000 SET PAGES 9999 COLUMN INSTANCE_NAME FOR A20 SELECT instance_name, to_char(startup_time,...
-
Solution: SELECT s.inst_id,a.request_id,s.sid,s.serial#,c.spid FROM apps.fnd_concurrent_requests a, gv$process c, gv$session s WHE...
-
Error: [AutoConfig Error Report] The following report lists errors AutoConfig encountered during each phase of its execution. Errors a...
-
Error: [Dec 30, 2014 6:05:42 PM] OUI-67200:Make failed to invoke "/usr/bin/make -f ins_rdbms.mk ioracle ORACLE_HOME=/d01/UAT/db/t...
No comments:
Post a Comment