View previous topic :: View next topic |
Author |
Message |
nbollineni Beginner
Joined: 22 Aug 2007 Posts: 1 Topics: 1
|
Posted: Thu Aug 23, 2007 3:11 pm Post subject: Space Calculation |
|
|
Can someone help me in calculating the number of records a file can hold without space abend in the following scenario..
SPACE=(CYL,(500,500)
LRECL=15164
RECFM=FB |
|
Back to top |
|
 |
s_shivaraj Beginner

Joined: 21 Sep 2004 Posts: 140 Topics: 14 Location: Chennai, India
|
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Fri Aug 24, 2007 7:57 am Post subject: |
|
|
nbollineni,
After you use the 3390 chart in the link above to calculate recs per cyl remember that errors can occur if you're not able to allocate secondary space. An option is to use more than one unit. Code JCL as UNIT=(unitname,2) to use two units, for example. SMS routines may also be affecting the actual allocation and units used.
With no space restriction, you'd get primary plus 15 secondary allocations. _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
 |
|
|