Below sql query brings me th results i need but it ignores the steps which were executed by Sprinter.
can anyone help me how can i get the total steps passed including the steps executed by Sprinter. Thanks
SELECT CY_CYCLE as "Set Name", ST_STATUS, COUNT(*)
FROM STEP ,RUN ,CYCLE ,CYCL_FOLD
WHERE ST_RUN_ID = RN_RUN_ID AND RN_CYCLE_ID = CY_CYCLE_ID AND CY_FOLDER_ID = CF_ITEM_ID
AND CF_ITEM_NAME like 'QA14'
GROUP BY ST_STATUS, CY_CYCLE ORDER BY CY_CYCLE