Hi
I am using this query for getting the capacity information.
SELECT tablespace.tablespace_id tablespaceid, tablespace.tablespace_name caption , tablespace.tablespace_type tablespacetype,tablespace.tablespace_state tablespacestate,tablespace.bufferpool_id, (tablespace.used_pages * page_size) usedspace,(tablespace.free_pages * page_size) freespace, (tablespace.total_pages * page_size) allocatedspace, page_size, tablespace.num_containers, tbs_contents_type FROM TABLE( SNAPSHOT_TBS_CFG('dwctrldb',-2) ) as tablespace
But the page_size is not getting returned there by the capacity is coming (-)
i am using UDB 8.1 on a windows box.
any idea why the page_size is coming (-)