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



just add b.memory_pool to the initial select

SELECT DISTINCT CAST(A.Objlongschema AS CHAR(10)) AS "Library"
,A.Objname AS "Subsystem"
,CASE
WHEN B.Subsystem IS Null THEN 'Inactive'
ELSE 'Active'
END AS "Status"
, b.memory_pool
FROM TABLE (
Qsys2.Object_Statistics('*ALL', 'SBSD')
) A
LEFT OUTER JOIN TABLE (
Qsys2.Active_Job_Info()
) B
ON A.Objname = B.Subsystem
AND A.Objlongschema = B.Subsystem_Library_Name
ORDER BY 4 ;

not necessarily all the configured pools for the sbsd, but the "main" pool for the sbs is there

Bryan


Rob Berendt wrote on 2/10/2020 2:25 PM:
Those do not drill down and tell me what pools they use. But thank you for looking though.

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.