What is catelog procedure and how many catelog procedure to
use in one job?
Answers were Sorted based on User's Feedback
Answer / muttaiah
Procedure: set of JCL code used to perform specified
function
2 types
1. Instream and 2. Catalog proc
Instream proc: is the one which is coded with in the JCL
Catlg Prod: Which is coded in a member of a PDS and is
referenced in the JCl through the JCLLIB order stmt.
We can use max of 255 steps in a JCL. Each step can have
only 1 catlg proc. Hence 255 catlg proc can be used in a
JCL.
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / rekha
If we want to access the data of a out side member in our
JCL program then we have to go for Catelog Procedure.
In one job we can use up to 255 catelog procedures.
Is This Answer Correct ? | 8 Yes | 0 No |
Explain about LMQUERY�give a dialog information about a data set
How to run cobol program using jcl?
what is the general use of PARM? Give an explanation about the system defined parameters that could be passed through this PARM like XREF,LIST,LET,APOST,RENT etc..
How to exclude the duplicate records from two concateded flat files (records from both files must be removed)?
How gdg are concatenated?
01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
Explain about RECORDING MODE Clause
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and want to execute step04. and once step04 is done then I want to go back and execute step03. once step03 is completed I want execute step05, 06 and so on... can any one tell me how do i do that???
In SPACE,what is directory,RLSE
How many positional parameters are there in job statement?
When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).