關閉Concurrent Mananger或Server Crash後還是執行狀態的Concurrent Request如何處理

tolywang發表於2012-05-03


Concurrent Requests Stuck in Running Status After Server Crashed [ID 152763.1] 
--------------------------------------------------------------------------------


修改時間11-JAN-2011 型別 PROBLEM 狀態 ARCHIVED
 


•fact: Oracle Application Object Library
•symptom: Concurrent requests stuck in Running status
•change: Server crashed
•cause: Either the server crashed or the concurrent manager was shutdown
while concurrent requests were running.    Thus the phase_code column of the
FND_CONCURRENT_REQUESTS table still holds a value of 'R' for Running.

 

fix:

1.  First, run the cmclean.sql script. found in Metalink Note:134007.1.

2.   If this doesn't resolve the issue, then Shut down the concurrent managers
then check for any FNDLIBR processes running at the OS level.   There should
not be any.  If there are FNDLIBR processes, then kill them at the OS level.
.
If this doesn't resolve the issue then ...

3.  try the following SQL update command after making a note of the request ID
number of the problem concurrent requests:
.
SQL> update fnd_concurrent_requests
set set status_code='X', phase_code = 'C'
where request_id = ;
commit;

或者直接登入EBS系統在concurrent mananger 的介面中查詢對應的request ID , 一個一個設定為cancel .

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-722595/,如需轉載,請註明出處,否則將追究法律責任。

相關文章