×
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.
Check your ptf levels. That does sound familiar.
I just tried it on 7.3. Only slightly reformatted to fit into STRSQL.
SELECT
SUBSTR(JOB_NAME,1,6) AS JOB_NUMBER,
SUBSTR(JOB_NAME,8,POSSTR(SUBSTR(JOB_NAME,8),'/')-1) AS JOB_USER,
SUBSTR(SUBSTR(JOB_NAME,8),POSSTR(SUBSTR(JOB_NAME,8),'/')+1)
JOB_NAME FROM TABLE(QSYS2.ACTIVE_JOB_INFO(
SUBSYSTEM_LIST_FILTER => 'QUSRWRK')) X
Basically I moved the SELECT to its own line and moved the three SUBSTRs
to the left.
Giving the SQL message id may make it easier to search PTF cover letters.
If I search 7.1 ptf cover letters for "active_job_info" I get 83 hits.
Most of these, however, simply mention a prerequisite which involves that
service.
One of those hits will tell you exactly which ptfs gave 7.1 that service
in the first place.
http://www-912.ibm.com/a_dir/as4ptf.nsf/$$search?openform
Rob Berendt
As an Amazon Associate we earn from qualifying purchases.