Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/08/2024 10:21 PM
08/08/2024 10:23 PM
08/08/2024 11:21 PM
Hi @rushikeshvartak ,
In above link there is long running job analytics and 2nd is Failed Application Import Job analytics
I want Failed System Processing Jobs.
08/08/2024 11:38 PM
Hi @Pratham there is already an OOTB analytics for this. Did you check this?
08/08/2024 11:58 PM
Hi @naveenss ,
Yes, I check that one
Is it sufficient for the Failed System Processing Jobs?
select jobid,
jobname,
jobstartdate,
jobenddate,
SAVRESPONSE
from ecmimportjob
where EXTERNALCONNECTION is null and
SAVRESPONSE != 'Success';
08/09/2024 12:01 AM
Hi @Pratham yes this should suffice. This is a pre-packaged analytics from Saviynt. If you have any additional requirements, I would recommend a similar analytics by enhancing the current query.
08/09/2024 01:25 AM
SELECT TRIGGERNAME, JOBGROUP, JOBSTARTDATE AS 'JOBSTARTDATE(UTC)', JOBENDDATE AS 'JOBENDDATE(UTC)', SAVRESPONSE AS JOBRESPONSE from ecmimportjob where ( SAVRESPONSE NOT IN ('Success', 'InProgress') ) AND ( JOBSTARTDATE >= CURRENT_TIMESTAMP - INTERVAL 15 DAY )
This is what we are suing currently to locate all failed jobs within last 15 days.
08/09/2024 02:27 AM
Data will be huge so apply date filters
08/09/2024 02:47 AM
Hi @rushikeshvartak , @Abhishek0406 , @naveenss
Can you check this query, if it is not correct can you make some changes to get exact data.
select jobid as 'JOB ID',
jobname as 'JOB NAME',
JOBGROUP as 'JOB GROUP',
SAVRESPONSE as 'SAV RESPONSE',
TRIGGERNAME as 'TRIGGER NAME',
jobstartdate as 'JOB START DATE',
jobenddate as 'JOB END DATE',
timediff(JOBENDDATE,JOBSTARTDATE) as 'Time Taken'
from ecmimportjob
where EXTERNALCONNECTION is null and
SAVRESPONSE NOT IN ('Success','InProgress')AND(JOBSTARTDATE >= CURRENT_TIMESTAMP - INTERVAL 10 DAY)
08/09/2024 02:52 AM
Query is correct
08/09/2024 02:56 AM
Looks good to me.