[Script]Long Running Concurrent Request in Oracle EBS
Looking on how to check long running concurrent request in Oracle Apps 11i or R12? Here’s the overview of the SQL query script to detect the session information of each program.First you need to get the listing of running concurrent request in Oracle Apps 11i or R12. You can use the SQL query script as below to obtain the list of running request.
You can see the request id and other relevant information from the result.Based on the SPID associated to each running request, query the v$session or v$session_longops table to see what is the request id doing in the backend.
Replace v$session with gv$session if the database is running on RAC environment. Enable or set trace if you wish to know more details on the session.