I need a report that shows "FtOperationEnd" from various time ranges like 10am-6pm for each day of a month. I can get one day by using select but not just that time range for multiple days. I cant do a parameter because the report is based on the following command and the FtOperationEnd does not show up in it.
SELECT MachineName,EType,FtOperationEnd,U64PhysNetworkBytes
FROM "engine"."JobStatus" "JobStatus" INNER JOIN "engine"."Machines" "Machines" ON "JobStatus"."RidMachine"="Machines"."Rid"
WHERE DATE(RecordWriteTime) >= {?BeginningDate} and DATE(RecordWriteTime) <= {?EndingDate}
Thanks a lot
Di
SELECT MachineName,EType,FtOperationEnd,U64PhysNetworkBytes
FROM "engine"."JobStatus" "JobStatus" INNER JOIN "engine"."Machines" "Machines" ON "JobStatus"."RidMachine"="Machines"."Rid"
WHERE DATE(RecordWriteTime) >= {?BeginningDate} and DATE(RecordWriteTime) <= {?EndingDate}
Thanks a lot
Di