Does the STATUS_CHANGE_TIME mean that is the last time the job was active or changed status, I'm assuming?
SELECT SUBSTR(DB_NAME,1,8) AS DB_NAME,
AGENT_ID,
SUBSTR(APPL_NAME,1,10) AS APPL_NAME,
APPL_STATUS ,
STATUS_CHANGE_TIME
FROM TABLE(SNAP_GET_APPL_INFO(CAST(NULL AS VARCHAR(128)),-1)) AS T
Is this any different than running db2 list applications for database {dbName} show detail?
Thank you.
CC