Hi
I can read from your select statement in sysmaster that the new chunks size has a 524288 pages size, among which 32759 pages are free, so for me you have available space.
To get things clearer, state your select with a group by dbspace and with a sum on size and free, like this
Code:
SELECT name,fname,sum(chksize) as chksize,sum(chksize-nfree) as used,sum(nfree) as nfree
FROM syschunks, sysdbspaces
WHERE syschunks.dbsnum = sysdbspaces.dbsnum
group by 1,2
order by 1,2
Multiply the results by pagesize to have bytes, else results are in pages.
This would help to get clarity in your output :-)
Eric