关闭Concurrent Mananger或Server Crash后还是运行状态的Concurrent Request如何处理

简介:

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博客tolywang的博客,原文链接:关闭Concurrent Mananger或Server Crash后还是运行状态的Concurrent Request如何处理,如需转载请自行联系原博主。

相关文章
|
6月前
|
Java 数据库连接 开发者
Java的Shutdown Hook机制:优雅地关闭应用程序
Java的Shutdown Hook机制:优雅地关闭应用程序
284 1
|
应用服务中间件 API nginx
一个超长时间的http api 的 nginx 超时错误 java.io.IOException: unexpected end of stream on Connection
一个长时间的http api 的 nginx 超时错误 直接访问IP是OK的。但是经过了中间一台域名机子,配置了nginx (基本上所有的超时时间timeout配置项都配置了足够的时间)的proxy_pass到这个IP上。
7555 0
emqtt 启动报错 Erlang closed the connection 查看状态报错
emqtt 启动报错 Erlang closed the connection 查看状态报错 Node 'emq@192.168.*.*' not responding to pings.
262 0
|
SQL Oracle 关系型数据库
解决Oracle的状态: 失败 -测试失败: IO 错误: The Network Adapter could not establish the connection
解决Oracle的状态: 失败 -测试失败: IO 错误: The Network Adapter could not establish the connection
2101 0
解决Oracle的状态: 失败 -测试失败: IO 错误: The Network Adapter could not establish the connection
emqtt 启动报错 Erlang closed the connection 查看状态报错
emqtt 启动报错 Erlang closed the connection 查看状态报错 Node 'emq@192.168.*.*' not responding to pings.
257 0
|
Java
【Java 并发编程】线程池机制 ( 线程池状态分析 | 线程池状态转换 | RUNNING | SHUTDOWN | STOP | TIDYING | TERMINATED )
【Java 并发编程】线程池机制 ( 线程池状态分析 | 线程池状态转换 | RUNNING | SHUTDOWN | STOP | TIDYING | TERMINATED )
145 0
【Java 并发编程】线程池机制 ( 线程池状态分析 | 线程池状态转换 | RUNNING | SHUTDOWN | STOP | TIDYING | TERMINATED )
|
Java 测试技术 Nacos
Java访问Elasticsearch报错Request cannot be executed; I/O reactor status: STOPPED
Java访问Elasticsearch报错Request cannot be executed; I/O reactor status: STOPPED
4554 0
Java访问Elasticsearch报错Request cannot be executed; I/O reactor status: STOPPED
|
监控 Java 调度
为什么 Java 线程没有 Running 状态?
Java虚拟机层面所暴露给我们的状态,与操作系统底层的线程状态是两个不同层面的事。具体而言,这里说的 Java 线程状态均来自于 Thread 类下的 State 这一内部枚举类中所定义的状态:
148 0
为什么 Java 线程没有 Running 状态?
|
Java 应用服务中间件 容器
Java设置session超时(失效)的三种方式 (转载)
Java设置session超时(失效)的三种方式 (转载)
242 0
|
Oracle 关系型数据库 Linux
oom_kill_process造成数据库挂起并出现found dead shared server
这篇博客是上一篇博客Oracle shutdown immediate遭遇ORA-24324 ORA-24323 ORA-01089的延伸(数据库挂起hang时,才去重启的),其实这是我们海外一工厂的遇到的案例,把内容拆开是因为这个case分开讲述显得主题明确一些。
1303 0