×
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.
I suspect some of my job system values have been carried over from v1.2 on our initial B model.
Got some recommendations from IBM Lab systems
Current Shipped New
Name value value Recommendation
QTOTJOB 30 200 500
QACTJOB 50 200 300
QADLACTJ 10 30 200
QADLTOTJ 10 30 200
The following returns 1,234 active jobs:
select count(*)
from table(qsys2.active_job_info(
RESET_STATISTICS => 'NO',
SUBSYSTEM_LIST_FILTER => '' ,
JOB_NAME_FILTER => '*ALL',
CURRENT_USER_LIST_FILTER => '',
DETAILED_INFO => 'NONE'
)) A
;
The following returns 73,068 total jobs:
SELECT COUNT(*) FROM TABLE(QSYS2.JOB_INFO(JOB_USER_FILTER => '*ALL')) X;
Rob Berendt
--
IBM Certified System Administrator - IBM i 6.1
Group Dekko
Dept 1600
Mail to: 2505 Dekko Drive
Garrett, IN 46738
Ship to: Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com
As an Amazon Associate we earn from qualifying purchases.