--查找运行请求时间,参数等(可以是某用户的,某个报表)
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. 【NLP】Python NLTK获取文本语料和词汇资源
  2. GO语言练习:struct基础练习
  3. [JS4] 最简单JS框架
  4. uva 10129 play on words——yhx
  5. 强连通+二分匹配(hdu4685 Prince and Princess)
  6. (01)odoo模型中调用窗体动作
  7. java -X 这不是标准的选项只是为了获取帮助信息
  8. iOS UITableView的一些方法
  9. Page.ClientScript.RegisterStartupScript 与 Page.ClientScript.RegisterClientScriptBlock 之间的区别
  10. 纯JAVA驱动:sqlserver版本不同,驱动与连接也有所区别
  11. 兼容的网页宽度margin padding
  12. 在SDL工程中让SDL_ttf渲染汉字
  13. 第二十节,使用RNN网络拟合回声信号序列
  14. ansible学习笔记三:playbook和roles
  15. Oracle数据库错误大全
  16. css3新增样式介绍
  17. 关于 NSInvocation
  18. [转帖]SSD的工作原理、GC和TRIM、写入放大以及性能评测
  19. easyform表单校验插件改版源码
  20. ES6学习笔记(二)-字符串的扩展

热门文章

  1. TS/ES/PS
  2. php代码编译的实现
  3. &lt;转--大话session&gt;
  4. jquery.raty.js 评星插件的使用
  5. C++11新特性介绍 02
  6. phpcms模块开发中的小问题及解决方法
  7. 给iOS开发新手送点福利,简述UITextField的属性和用法
  8. iOS - Properties 入门
  9. 常见的linux服务器构建
  10. ES6系列_2之新的声明方式