select fcr.request_id,
fcr.request_date,
decode(fcr.status_code,'E','Error','G','Warning') status,
decode(FCR.phase_code,'R','Running','C','Completed','P','Pending','I','Inactive') phase,
(select user_name from fnd_user where user_id=fcr.requested_by) "user",
FCP.user_concurrent_program_name "program name",
fcr.argument_text "argument",
fcr.completion_text "completion"
from FND_CONCURRENT_REQUESTS FCR,
FND_CONCURRENT_PROGRAMS_TL FCP
where FCR.concurrent_program_id=FCP.concurrent_program_id
and trunc(fcr.request_date) = trunc(sysdate -1)
and (FCR.status_code='E' or FCR.status_code='G') ;
-
Windows7 / Windows8 kill process Linux下要刪除某個程序通常會使用 ps 配合 kill 來刪除程序。 例如:ps -ef |grep [PROCESS NAME] kill -9 [PID] 在Windows下,通常是...
-
利用Win 10的工作排程器來設定每日自動執行的批次檔,單獨執行批次檔沒問題,但是放在排程上就是無法執行。 後來試了幾種網路上提供的方式,其注意的事項如下: 1、在「安全性選項」選擇「只有使用者登入時才執行」並取消「以最高權限執行」。 2、在「設定」中選擇「Win...
-
對於使用Premiere CC,我還只是新手,所以還在學習。 今天記錄的是如何把一段影片與聲音分離,分離後可以單獨操作, 這個應該是最基本的技能吧,會有這個需求,主要是我的影音沒有同步, 所以想把影片與聲音分開處理,以解決不同步的問題。 分離只有一個步驟,就是在Time...