× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



this is one of my favorites

-- category: Bryan.Dietz
-- description: Jobs in msgw(wrkactjob)

SELECT Job_Name
,Subsystem
,Function_Type CONCAT '-' CONCAT Function AS "Function"
,Job_Status
,(SELECT Message_Text
FROM TABLE (Qsys2.Joblog_Info(I.Job_Name)) A
ORDER BY Ordinal_Position DESC
FETCH First 1 ROW ONLY) AS Joblog_Info
FROM TABLE ( Qsys2.Active_Job_Info( ) ) I
WHERE
Job_Status = 'MSGW'
and
job_name not like '%/ROBOT%'
-- filter out ROBOT jobs that are always in MSGW :-)
ORDER BY Subsystem
;





https://gist.github.com/bdietz400
--
Bryan

Justin Taylor wrote on 4/5/2022 2:36 PM:
That's it! I did have to add "JOB_STATUS_FILTER => '*ACTIVE'" to JOB_INFO
to prevent SQL State 42704.

Thank you


date: Tue, 5 Apr 2022 16:16:34 +0000
from: Rob Berendt <rob@xxxxxxxxx>
subject: RE: Query mult joblogs for string

Something like this:
select a.job_name, b.message_id, b.message_text, b.*
from table(qsys2.job_info(
JOB_USER_FILTER => 'QUSER')) a,
lateral (select * from table(qsys2.joblog_info(a.job_name)) x) b
where a.job_name like('%QZLSFILET%')
and b.message_id in('CPIAD12');

Rob Berendt
--
IBM Certified System Administrator - IBM i 6.1
Group Dekko
Dept 1600
Mail to: 7310 Innovation Blvd, Suite 104
Ft. Wayne, IN 46818
Ship to: 7310 Innovation Blvd, Dock 9C
Ft. Wayne, IN 46818
http://www.dekko.com



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.