IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

significance of 255 in JCL??


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
paul_007

New User


Joined: 03 Aug 2006
Posts: 33
Location: earth

PostPosted: Thu Nov 02, 2006 2:20 pm
Reply with quote

what is so special about this 255 in JCL i mean ...there are 255 steps in JCL.....255 procedure in single JCL .....255 generation in a single gdg BASE...... why 255???
Back to top
View user's profile Send private message
UmeySan

Active Member


Joined: 22 Aug 2006
Posts: 771
Location: Germany

PostPosted: Thu Nov 02, 2006 2:53 pm
Reply with quote

Hi !

255 is as special as 4096.

Btw, 4096 is the highest value for adressing Bytes with a Base-Register in Assembler.

255 is the highest value a byte could have. So 255 decimal is "FF" in hexa.
In former times at the beginning of comuters and programmings you had
always byte-commands. Remember the Assembler-Instruction MVC. It is
the same as MOVE in Cobol. The longest field you could move with one
instruction could only be 255 bytes. Also all the internal routins for accessing and handling Datasets, written bei IBM, are using ContolBlocks and special SystemServices based on that restriction.

For example, if you open a dataset in cobol-programm, in the background, the internal I/O-Routins are accessing a RDJFCB (READ-JOB-FILE-CONTROLBLOCK), where all Information of the actual dataset is stored.

It's the chaining beetween your logical file in programm and the physical file, declared in the JobControlLanguage, and the actual physical device.

Now, this RDJFCB has a special structure and field-order. Some contents are stored in only one byte. And so, the highest value could only be 255. No one would be so crazy to change all these old routins. Nothing more would work. You only could enhance these ControlBlocks with new features, but you must leave the earlier fields and flags.

And now comming to the limitation of 255 GDG's. The limit-value is stored
in on Byte of such ControlBlock. And what is the highest value you could store in one Byte ??? !!!


Thank you fore listening to my little excurse of mainframe stone-age.

Regards, UmeySan
(mainframe-dinosaur)
Back to top
View user's profile Send private message
paul_007

New User


Joined: 03 Aug 2006
Posts: 33
Location: earth

PostPosted: Thu Nov 02, 2006 3:34 pm
Reply with quote

thnx a lot umey san ...you solved a big doubt in my mind


icon_smile.gif



thnx a lot once again
Back to top
View user's profile Send private message
prashanth1

New User


Joined: 27 Sep 2006
Posts: 47
Location: Hyderabad

PostPosted: Thu Nov 02, 2006 3:46 pm
Reply with quote

Really U r gr8
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts what is the significance of REPLACE=N... JCL & VSAM 6
No new posts Significance of APOST and XREF in PARM JCL & VSAM 2
No new posts Significance of COBOL PROGRAM-ID COBOL Programming 3
No new posts Significance of level 49 with DB2 VAR... DB2 5
No new posts Significance of value -252645136 whil... COBOL Programming 6
Search our Forums:

Back to Top