|
|
| Author |
Message |
boobalamurugan
New User
Joined: 26 Oct 2007 Posts: 3 Location: chennai
|
|
|
|
i ve submitted the following job after creating VSAM dataset
| Code: |
//STEP10 EXEC PGM=IDCAMS
//OUTFL DD DSN=P76B.VSAM1.KSDS,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSIN DD *
LISTCAT ENTRIES FILE(OUTFL) ALL
/*
// |
In the VSAM details, i couldn't understand the following detail
HI-A-RBA---------1013760
HI-U-RBA----------506880
can anyone explain me ? |
|
| Back to top |
|
 |
References
|
Posted: Wed Jul 02, 2008 10:43 am Post subject: Re: whtas Difference b/w HI-A-RBA and HI-U-RBA in the LISTCAT |
 |
|
|
 |
madhumca2005
New User
Joined: 16 Jun 2008 Posts: 1 Location: pune
|
|
|
|
| it is used for finding how much allocated space used or unused in vsam datasets |
|
| Back to top |
|
 |
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 2955 Location: Brussels once more ...
|
|
|
|
HI-A-RBA---------1013760 - Highest allocated RBA
HI-U-RBA----------506880 - Highest used RBA
So you have 506880 bytes left to use |
|
| Back to top |
|
 |
prakash271082
Active User
Joined: 09 Sep 2005 Posts: 61
|
|
|
|
Hi,
HI-A-RBA is Highly allocated relative byte address - Maximum space allocated for VSAM dataset.
HI-U_RBS is Highly used relative byte address - Actual space occupied right now by VSAM dataset. |
|
| Back to top |
|
 |
|
|