--查找运行请求时间,参数等(可以是某用户的,某个报表)
select c.user_name,
papf.full_name,
b.user_concurrent_program_name,
a.request_date,
a.argument_text,
(a.actual_completion_date - a.actual_start_date) * 24 * 60 minutes,
a.actual_start_date,
a.actual_completion_date,
a.request_id,
a.outfile_name
from fnd_concurrent_requests a,
fnd_concurrent_programs_vl b,
fnd_user c,
per_all_people_f papf
where a.concurrent_program_id = b.concurrent_program_id
and a.requested_by = c.user_id
and c.user_name = papf.employee_number(+)
and a.actual_completion_date is not null
and b.user_concurrent_program_name = '你的程序名称' --- like '%XXX%'
and c.user_name = ' 你要找的用户的'
and a.request_date <=
to_date('2005-03-01 23:59:59', 'yyyy-mm-dd hh24:mi:ss')
and a.request_date >=
to_date('2005-03-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss')
and a.request_id > 2254198 ---为了提高速度,选一个合适时间点的ID

最新文章

  1. java 判断String 是否为空
  2. MVC 之 WebAPI 系列二
  3. JSON处理
  4. Android实现app长时间未操作时自动退出app
  5. Mac功夫——OS X应用技巧
  6. ajax请求、servlet返回json数据
  7. HDU 1686 Oulipo , 同 POJ 3461 Oulipo (字符串匹配,KMP)
  8. mysql之sql语句细节问题汇总
  9. java专业规划(转载)
  10. jtemplate使用笔记
  11. JAVA并发七(多线程环境中安全使用集合API)
  12. digitalocean Vultr Linode 三家海外vps最新真实情况
  13. 重启osd服务失败:Start request repeated too quickly
  14. 《撸轮子系列》之LoadPE
  15. [原创]K8Cscan插件之Web主机扫描(存活主机、机器名、Banner、标题)
  16. jvm详情——7、jvm调优基本配置、方案
  17. ubuntu14.04下开启ssh服务
  18. 第15次Scrum会议(10/27)【欢迎来怼】
  19. 在javascript中substr和substring的区别是什么
  20. Java使用for循环输出杨辉三角

热门文章

  1. HDU3564 --- Another LIS (线段树维护最值问题)
  2. hdu2082:简单母函数
  3. hibernate 对 sql server 2005 分页改进
  4. JAVA并发实现五(生产者和消费者模式Condition方式实现)
  5. [RxJS] Reactive Programming - Clear data while loading with RxJS startWith()
  6. AVD启动不了 ANDROID_SDK_HOME is defined but could not find *.ini
  7. 我永远的 dell 15r
  8. oracle 数据库 if...elsif...语句
  9. NSSet使用小结
  10. 去除tableView上面的黑色部分 解决办法