select JOB_NAME, (JOB_END_TIME - JOB_ACTIVE_TIME) as run_time from table
(QSYS2.JOB_INFO( JOB_STATUS_FILTER => '*OUTQ',
JOB_USER_FILTER => '*ALL'
)) X
WHERE JOB_TYPE NOT IN ('SBS','SYS')
AND JOB_QUEUE_NAME = 'QBATCH1'
and JOB_ENTERED_SYSTEM_TIME between
'2018-06-04-04.00.00.000000' and
'2018-06-04-08.30.00.000000'
run_time is shown as an integer, the book calls it a "duration in the form
of yyyymmddhhMMss"
I want to format it to HH:MM:SS ....
Hmmm, that is a little tricky. If the runtime (difference between
JOB_END_TIME and JOB_ACTIVE_TIME) is less than 24 hours, you could do the
following trick:
1. Calculate the difference between Start and End-Timestamp in Seconds with
the TIMESTAMPDIFF function.
2. Substract the determined number of seconds from midnight and you'll get a
formatted Time Value:
Select JOB_NAME,
(JOB_END_TIME - JOB_ACTIVE_TIME) As RUN_TIME,
-->> Time('00.00.00') + Timestampdiff(2, Char(JOB_END_TIME -
JOB_ACTIVE_TIME)) Seconds as Formatted <<----
From Table(QSYS2.JOB_INFO(JOB_STATUS_FILTER => '*OUTQ', JOB_USER_FILTER
=> '*ALL')) X
Where (JOB_END_TIME - JOB_ACTIVE_TIME) < 24*60*60
and JOB_TYPE Not In ('SBS', 'SYS')
And JOB_QUEUE_NAME = 'QBATCH1'
And JOB_ENTERED_SYSTEM_TIME Between '2018-06-04-04.00.00.000000'
And '2018-06-04-08.30.00.000000'
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them
and keeping them!"
?Train people well enough so they can leave, treat them well enough so they
don't want to.? (Richard Branson)
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxx> On Behalf Of Gerald
Magnuson
Sent: Dienstag, 5. Juni 2018 18:29
To: Midrange List <midrange-l@xxxxxxxxxxxx>
Subject: SQL format or CAST a result of timestamp math
I have a result field from a sql. I am trying to display results from the
QSYS2.JOB_INFO UDTF....
select JOB_NAME, (JOB_END_TIME - JOB_ACTIVE_TIME) as run_time from table
(QSYS2.JOB_INFO( JOB_STATUS_FILTER => '*OUTQ',
JOB_USER_FILTER => '*ALL'
)) X
WHERE JOB_TYPE NOT IN ('SBS','SYS')
AND JOB_QUEUE_NAME = 'QBATCH1'
and JOB_ENTERED_SYSTEM_TIME between
'2018-06-04-04.00.00.000000' and '2018-06-04-08.30.00.000000'
run_time is shown as an integer, the book calls it a "duration in the form
of yyyymmddhhMMss"
I want to format it to HH:MM:SS ....
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe,
or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a
moment to review the archives at
https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
http://amzn.to/2dEadiD
As an Amazon Associate we earn from qualifying purchases.