ebs清除并法管理器所清除的表
In this Document
Goal |
Solution |
References |
Applies to:
Oracle Concurrent Processing - Version 11.5.10.0 to 12.1.3 [Release 11.5 to 12.1]
Information in this document applies to any platform.
***Checked for relevance on 23-Apr-2013***
Goal
How to run the Purge Concurrent Request and/or Manager Data program and which tables does it purge?
Solution
运行清除并发请求和并发管理器数据程序
- Log in to Application as System Administrator responsibility.
- Navigate to Request> Run> Single Request
- Query up Purge Concurrent Requests.
- For values to be entered in the parameter screen refer to the Oracle
Administration System Administration Guide
The following tables will be purged depending on the value used for the Entity parameter:
Table name | Description | Description |
---|---|---|
FND_CONCURRENT_REQUESTS | This table contains a complete history of all concurrent requests. | This table contains a complete history of all concurrent requests. |
FND_RUN_REQUESTS | When a user submits a report set, this table stores information about the reports in the report set and the parameter values for each report. | When a user submits a report set, this table stores information about the reports in the report set and the parameter values for each report. |
FND_CONC_REQUEST_ARGUMENTS | This table records arguments passed by the concurrent manager to each program it starts running. | 通过此表记录并发管理开始运行的每个程序的参数。 |
FND_DUAL | This table records when requests do not update database tables. | 此表中的记录不更新数据库表的请求 |
FND_CONCURRENT_PROCESSES | This table records information about Oracle Applications and operating system processes. | This table records information about Oracle Applications and operating system processes. |
FND_CONC_STAT_LIST | This table collects runtime performance statistics for concurrent requests. | This table collects runtime performance statistics for concurrent requests. |
FND_CONC_STAT_SUMMARY | This table contains the concurrent program performance statistics generated by the Purge Concurrent Request and/or Manager Data program. The Purge Concurrent Request and/or Manager Data program uses the data in FND_CONC_STAT_LIST to compute these statistics. | This table contains the concurrent program performance statistics generated by the Purge Concurrent Request and/or Manager Data program. The Purge Concurrent Request and/or Manager Data program uses the data in FND_CONC_STAT_LIST to compute these statistics. |
FND_CONC_PP_ACTIONS | Stores the post request processing actions(e.g., print, notify) for each submitted request. There's a concurrent_request_id here for each request_id in the FND_CONCURRENT_REQUESTS. |
Stores the post request processing actions(e.g., print, notify) for each submitted request. There's a concurrent_request_id here for each request_id in the FND_CONCURRENT_REQUESTS. |
FND_RUN_REQ_PP_ACTIONS | Stores the post request processing actions(e.g., print, notify) for submitted request set programs that are stored in FND_RUN_REQUESTS | Stores the post request processing actions(e.g., print, notify) for submitted request set programs that are stored in FND_RUN_REQUESTS |
FND_ENV_CONTEXT | This table stores information about environment name and value for each of the concurrent process | 本表为每个并发进程存储关于环境名和变量的信息 |
References
ebs清除并法管理器所清除的表的更多相关文章
- EBS Concurrent Manager(并发管理器)异常处理[final]
来自:http://blog.itpub.net/35489/viewspace-742191/ 有时候我们在通过 adstpall.sh 关闭应用后,然后再使用adstrtal.sh开启.发现并发 ...
- Java GUI 布局管理器
容器可设置布局管理器,管理容器中组件的布局: container.setLayout(new XxxLayout()); Java有6种布局管理器,AWT提供了5种: FlowLayout Borde ...
- Qt 布局管理器
在一个颜值当道的今天,无论买衣服,买车还是追星,颜值的高低已经变成了大家最看重的(不管男性女性都一样,千万别和我说你不是):而对于程序猿来说,开发一款软件,不再只注重逻辑和稳定性,美观和用户友好性也是 ...
- Spring事务管理器的应对
Spring抽象的DAO体系兼容多种数据访问技术,它们各有特色,各有千秋.像Hibernate是非常优秀的ORM实现方案,但对底层SQL的控制不太方便:而iBatis则通过模板化技术让你方便地控制SQ ...
- Spring事务管理器分类
Spring并不直接管理事务,事实上,它是提供事务的多方选择.你能委托事务的职责给一个特定的平台实现,比如用JTA或者是别的持久机制.Spring的事务管理器可以用下表表示: 事务管理器的实例 目标 ...
- Oracle EBS 清除并发请求和(或)管理器数据 请求
请求说明:该请求可以清除平时提交的请求日志文件.并发管理器的日志文件.报表输出文件.并发请求和并发管理器进程的历史记录信息. 参数说明:(红色标注字段为必输项)1. 实体:ALL:清除请求历史记录. ...
- Android 本应用数据清除管理器DataCleanManager
1.整体分析 1.1.源代码先给出了,可以直接Copy. /** * 本应用数据清除管理器 */ public class DataCleanManager { /** * * 清除本应用内部缓存(/ ...
- 关于如何获取/清除 MAXScript 侦听器内的文本
关于如何获取/清除 MAXScript 侦听器内的文本 用来保存记录?还没想到实际用处,先记上. macroRecorder as string listener as stringclearList ...
- EBS并发管理器启动失败,系统暂挂,在重置计数器之前修复管理程序
今天EBS安装补丁之后,因为停并发管理器的时候,因为关闭EBS应用时,并发管理器没有在前台停止,就直接停了应用服务,导致启动时,并发管理器直接起不来了,使用adcmctl.sh也没有办法启动. 进入系 ...
随机推荐
- sqlserver 增加用户并分配权限
1.创建用户cmd2:CREATE LOGIN cmd2 WITH PASSWORD='123qwe!@#',DEFAULT_DATABASE=DEV_CMD CREATE USER cmd2 FO ...
- Mobile Service更新和 Notification Hub 对Android的支持
本周,我们要推出一些更新,使移动服务成为移动应用程序更强大.更灵活的后端,同时推出一个与移动服务或网站结合使用的免费 20MB SQL 数据库,并且将支持通过Notification Hub中的 GC ...
- poj1504--求两个数的反转数的和的反转数
题意:给定4321 5678,结果再反转(1234+8756) 一开始以为是poj1503一样,就稀里糊涂的敲代码,实际上有不同 如题:先求1234 + 8765 ------------------ ...
- visibleViewController和topViewController 获取当前显示的页面
原文:http://blog.sina.com.cn/s/blog_881ed8500102vo38.html UINavigationController 中有visibleViewControll ...
- 使用过渡场景在多个场景的切换COCOS2D(4)
CCNode有三个方法,使用CCDirector的replaceScene方法替换场景时,每个节点都会调用这三个方法: onEnter与onExit方法在改变场景过程中的特定时刻被调用,这取决于是否使 ...
- 不同版本的 IIS 中使用 ASP.NET MVC(C#)【转】
由微软 ASP.NET 团队|2008 年 8 月 19 日 推特 在本教程中,您将学习在不同版本的 Internet Information Services 中如何使用 ASP.NET MVC 和 ...
- C++ Primer 学习笔记_85_模板与泛型编程 --模板特化[续]
模板与泛型编程 --模板特化[续] 三.特化成员而不特化类 除了特化整个模板之外,还能够仅仅特化push和pop成员.我们将特化push成员以复制字符数组,而且特化pop成员以释放该副本使用的内存: ...
- POJ1042 Gone Fishing
采用贪心策略. 假设他从1湖泊走到x 湖泊,这还剩下 h*12 - sigma(T1--Tx-1).(单位时间为5分钟).然后再用剩下的时间去钓1-x的湖泊的鱼. 每次都选择最多鱼的湖泊钓. code ...
- C#获取单个字符的拼音声母
public class ConvertToPinYing { /// <summary> /// 汉字转拼音缩写 /// < ...
- C# 学习笔记 C#基础
今天第一天开通博客.恰好在学习C#,所以就准备把学到的知识要点记录下来. 基础类型 类型定义了值得蓝图.值是一个被变量或者常量所指定的存储位置,变量是指可以被改变的,而常量则相反,其值不可以便改变, ...