08/22/2022 09:00 AM
Hello,
What is the table that contains job details ?
We would need to have an analytics that could contain (for UserImportJob) :
- Start Date of the job
- End date of the job
- Number of users in feed
Regards,
Solved! Go to Solution.
08/22/2022 09:10 AM - edited 08/22/2022 11:45 AM
SELECT EC.JOBNAME,EC.EXTERNALCONNECTION,EC.SAVRESPONSE AS RESPONSE, EC.JOBSTARTDATE,EC.JOBENDDATE, SUBSTRING_INDEX(SUBSTRING_INDEX(REPLACE(REPLACE(IL.LOGDATAASXML,'','@'),'','&'),'&',1),'@',-1) AS TOTAL_IMPORT_TIME FROM ECMIMPORTJOB EC, IMPORTLOG IL WHERE EC.JOBID = IL.JOBID AND EC.JOBNAME = 'USERIMPORTJOB' AND EC.SAVRESPONSE = 'SUCCESS';
08/23/2022 12:27 AM
Perfect, IMPORTLOG was the table I was looking for !