SQL for find the lately run of the specific concurrent programs:
select b.user_concurrent_program_name, a.*
from fnd_concurrent_requests a, fnd_concurrent_programs_tl b
where a.concurrent_program_id = b.concurrent_program_id
and b.language = 'US'
and a.request_date > to_date('2010-11-08', 'YYYY-MM-DD')
and b.user_concurrent_program_name <> 'Workflow Background Process'
AND upper(b.user_concurrent_program_name) like 'FTP%COMPASS'
ORDER BY a.request_date DESC;
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/17087603/viewspace-687512/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/17087603/viewspace-687512/
本文提供了一段SQL查询代码,用于查找特定名称中包含'FTP%COMPASS'的并发程序的最近运行记录,排除了'WorkflowBackgroundProcess',并限定语言为'US'及运行日期在2010年11月8日之后。

1.jpg
1万+

被折叠的 条评论
为什么被折叠?



