Wednesday, November 21, 2018


Internal Concurrent Manager is down.


We can find the status of Internal Concurrent Manager with this script.
If it is down, then we need to take steps to turn it back on.
 You must run it as user applsys or sys.


SELECT DECODE(RUNNING_PROCESSES, 1, 'UP', 'DOWN') STATUS 
FROM APPLSYS.FND_CONCURRENT_QUEUES
WHERE CONCURRENT_QUEUE_NAME = 'FNDICM';


OUTPUT
-----------

SQL> SELECT DECODE(RUNNING_PROCESSES, 1, 'UP', 'DOWN') STATUS
FROM APPLSYS.FND_CONCURRENT_QUEUES
WHERE CONCURRENT_QUEUE_NAME = 'FNDICM';  2    3

STAT
----
UP


No comments: