Login  Register

Re: Deactivate a concurent manager

Posted by ErmanArslansOracleBlog on May 07, 2018; 10:42am
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/Deactivate-a-concurent-manager-tp5902p5920.html

This is a TEST/UAT/DEV env right..

So you may update it from backend;

Update fnd_concurrent_queues set running_processes=0,max_processes=0 WHERE CONCURRENT_QUEUE_NAME = 'BLABLABLAAA';

UPDATE applsys.FND_CONCURRENT_QUEUES SET enabled_flag = 'N'
WHERE CONCURRENT_QUEUE_NAME = 'BLABLABLAAA';
commit;

This is not a supported move, so the risk is yours :)