In DCB, what is LRECL,BLKSIZE,DSORG
Answer / pradeep
DCB=DATASET CONTROL BLOCK.It specify the charecteristics
about the dataset.
LRECL=Logical REcord Length. it specify the leghth of the
record.
it mainly depends on the record structure fields.
BLKSIZE=block size.It specify the block size, that is how
many records has to be read into the buffer from physical
memory by one READ option.
DSORG=data set organization.
dsorg=PS for sequential dataset
dsorg=po for vsam files
| Is This Answer Correct ? | 5 Yes | 0 No |
what is the COND=EVEN ? Can anyone give me an example to explain the usage.
Give the syntax of job specifying jcl statement.
how to convert fb to vb in jcl ?
what is JCL?
WORKING-STORAGE SECTION. 1 GROUP-ITEM. 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50. 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP. PROCEDURE DIVISION. MOVE ZERO TO GROUP-ITEM. ADD 50 TO AMOUNT-1. DISPLAY AMOUNT-1. STOP RUN.
Explain about Internal Sort
how do u send return code from cobol to jcl ?
Explain how can return codes be tested before execution of a job step?
Current version of GDG is ID.GDG.FILE.G0001V00. JCL has procedure with 2 steps like below, What will be the output file name in each step ? PROC starts Step 1 has ID.GDG.FILE(+1) Step2 has ID.GDG.FILE(+4) PEND Similarly, JCL has 2 steps in 2 separate procedure. What will be the output file names here ? PROC starts Step 1 has ID.GDG.FILE(+1) PEND PROC1 starts Step2 has ID.GDG.FILE(+4) PEND
What will happen if you attempt to restart a job in the middle of a JCL // IF .... // ENDIF?
How system will identify whether user wants to create PS or PDS? If answer is SPACE parameter then why we need to pass ps or po as dataset organisation while creation
suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want exicute step 3 and step 7 only how we specify condition ?