Now I am thinking that the STRASPBAL didn't do squat. Coworker says he
did a mass CHGPF on a test library to set the UNIT(*ANY) then he did a
save/restore and that's what made the change in WRKDSKSTS. I ran this SQL
that's supposed to show you what's on SSD and it doesn't look good. Only
a library or two should be there.
With t1 as(
select
SYSTEM_INDEX_SCHEMA as library,sum(unit_space_used) as diskused
from qsys2/syspartitionindexdisk a
where unit_type=1
group by SYSTEM_index_SCHEMA
union all
select
SYSTEM_TABLE_SCHEMA as library,sum(unit_space_used) as diskused
from qsys2/syspartitiondisk a
where unit_type=1
GROUP BY SYSTEM_TABLE_SCHEMA)
select library, sum(diskused)
from t1
group by library
order by library
This mailing list archive is Copyright 1997-2025 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.