This query returns the date an instance was attempted, but not whether or not it succeeded.
select top 5000 | |||
SI_ID, | |||
SI_NAME, | |||
si_starttime, | |||
si_endtime | |||
FROM CI_INFOOBJECTS WHERE | |||
si_instance = 1 | |||
and si_runnable_object = 0 | |||
and si_starttime is not null |
This query returns the date an instance was attempted, but not whether or not it succeeded.
select top 5000 | |||
SI_ID, | |||
SI_NAME, | |||
si_starttime, | |||
si_endtime | |||
FROM CI_INFOOBJECTS WHERE | |||
si_instance = 1 | |||
and si_runnable_object = 0 | |||
and si_starttime is not null |