Replies: 4 comments
-
I think: File space is used according « blocksize », wich is a multiple of « recordsize » (for fixed record format). But allocation is made by « tracks » by system. In current sample:
This is theoric. |
Beta Was this translation helpful? Give feedback.
-
Missing informations:
|
Beta Was this translation helpful? Give feedback.
-
IBM documents the meaning of the data set attribute names returned by the z/OSMF REST API here:
The documentation seems rather vague here. It appears that |
Beta Was this translation helpful? Give feedback.
-
Hi @t1m0thyj The mvs system only knows how to manage disk space by means of track allocation... What I kept in my notes:
In addition, a track may not be fully used because it depends on the blocking mode (fixed or variable) and the size of the block. So there is usually some loss because it is rare for the size of a block to match the size of a multiple of tracks. If you want a size in bytes, you have to calculate from the size of the block and the number of blocks allocated or used.
All disks can be considered to have a track size of 56,664 bytes (3380 disks should only be found in museums now, except perhaps for some specific z/OS functions that have never been updated and which still work with 3380 disks... we do have mvs system code which is still in 24-bit addressing). |
Beta Was this translation helpful? Give feedback.
-
Hello,
I am using Zowe CLI command
zowe zos-files list data-set "MFAAS.SYSVIEW" --a
and it returns response like this:I would like to calculate the size of the dataset in bytes. I would like to understand the meaning of
sizex
andspacu
. Issizex
size in thespacu
units or it is in tracks or different units? What are the possible values forspacu
?Beta Was this translation helpful? Give feedback.
All reactions