Thank you. Im using the SQL server and the query is not detected as SQL query.
Code:
Declare @num_hours Integer
Declare @num_minute as Integer
Declare @num_sec as Integer
SELECT file_name, org_rcvd_dts,
DateDiff("s", bld_start_dts, bld_end_dts) AS Batch_time,
DateDiff("s", cnv_start_dts, cnv_end_dts) AS Build_time
FROM build_log(nolock)
Leave a comment: