-
-
Sort Card
What is the SORT CARD pertaining to the following statements:SD SORT-FILE.01 SORT REC. 05 NAME PIC X(10). 05 FILLER PIC X(45). 05 DEPIT PIC X(15). 05 AGE PIC 9(3). 05 SALARY PIC 9(6)V99 COMP-3. 05 FILLER PIC X(13).SORT SORT FILE ON ASCENDING KEY NAME SALARY DESCENDING KEY AGE.OPTIONS:a. SORT FIELDS=(1,10,CH,A,774,5,PD,A,71,3,ZD,D)B. SORT FIELDS=(1,10,CH,A,71,3,PD,D,74,5,ZD,A)C.SORT...
-
What is the purpose and meaning of the TIME keyword and what JCL statement is it associated with?
TIME specifies the maximum CPU time allocated for a particular job or job step. If TIME is in the JOB card, it relates to the entire job; if in the EXEC statement, it relates to the job step.
-
What is the purpose and meaning of the REGION keyword and what JCL statement is it associated with?
REGION specifies the maximum CPU memory allocated for a particular job or job step. If REGION is in the JOB card, it relates to the entire job; if in the EXEC statement, it relates to the job step.
-
What is the meaning of keyword in JCL? What is its opposite?
A keyword in a JCL statement may appear in different places and is recognized by its name, eg. MSGCLASS in the JOB statement. The opposite is positional words, where their meaning is based on their position in the statement, eg. in the DISP keyword the =(NEW,CATLG,DELETE) meanings are based on first, second and third position.
-
-
How do you skip a job and run step 1 and step3 ?
A job has 3 steps by name step1, step2, step3.if i don't want to execute step2, what i have to do.
-
-
CEEDUMP and SYSUDUMP
Hi, Can anybody please tell me what is the exact purpose of the CEEDUMP and SYSUDUMP and How effectively we can use them for the problem solving( abend handling)
-
-
JCL DD Statement
The step contains more than 3273 DD statements then what will happen the job if I submit..?
-
-
What is a PROC? What is the difference between an instream and a catalogued PROC?
PROC stands for procedure. It is 'canned' JCL invoked by a PROC statement. An instream PROC is presented within the JCL; a catalogued PROC is referenced from a proclib partitioned dataset.
-
JCL Steps
How to Run same steps in a jcl 'n' number of time each time with different input files without repeating the steps n times?
-
Space Identifier (ASID)
What is the name of the job that has an address space identifier (ASID) of one?
-
-
-
Describe the DD statement, its meaning, syntax and keywords?
The DD statement links the external dataset name (DSN) to the DDNAME coded within the executing program. It links the file names within the program code to the file names know to the MVS operating system. The syntax is // ddname DD DSN=dataset name. Other keywords after DSN are DISP, DCB, SPACE, etc.
-
-
JCL Interview Questions
Ans