× 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.



You know you can still use a WHERE clause, and an ORDER BY clause, on a
table function even if it has it's own special selection criteria, right?

So, it's quite easy to combine these:

SELECT * FROM TABLE(QSYS2.JOB_INFO(JOB_USER_FILTER => 'MSROBOT',
JOB_STATUS_FILTER => '*OUTQ')) X

select * from qgpl.jobinfo where substr(job_name,16,10) =
'DEFREVENUE' order by JOB_E00001 desc
FETCH FIRST 1 ROWS only

Into

SELECT * FROM TABLE(QSYS2.JOB_INFO(JOB_USER_FILTER => 'MSROBOT',
JOB_STATUS_FILTER => '*OUTQ')) X
where substr(job_name,16,10) = 'DEFREVENUE'
order by JOB_End_time desc
FETCH FIRST 1 ROWS only

Unless you've found it a real performance boost to sort/select a temporary
file versus doing it from a UDTF.
And I have a small criticism about using QGPL to hold temporary files, and
naming them close enough to the UDTF that I had to take a second look to
see what was going on. If IBM comes out with a new UDTF or some such
thing named qgpl/jobinfo you could be hosed. Think of the RUNSQL fun we
had a few releases back.

Oh and <expletive deleted> 10 character column names and using DSPFFD to
look them up
IOW, don't use JOB_E00001 instead of JOB_END_TIME.


Rob Berendt

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
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.