Monday, June 12, 2017

Find SID from Concurrent Request ID & PID

From Concurrent Request ID

select SID,SERIAL# from gv$session
where audsid in (
select oracle_session_id
from apps.fnd_concurrent_requests
where request_id = &conc_req_number);

From PID:


select * from v$session where paddr in (select addr from v$process where spid = 7590);

3 comments:

  1. HI...

    Is there any query to find the changes in a table database day by day ?

    Thanks
    ismath

    ReplyDelete
    Replies
    1. you have got to query the audit tables

      Try to search on oracle audit tables

      Delete
  2. Great, I wanted to check SID from PID and finally get it.

    ReplyDelete