Answer Posted / sravanthi
We can also create a GDG base in test using File Aid option
M.F;3.2 Create GDG base option is there
Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
Give the syntax of job specifying jcl statement.
Explain the purpose of dd * statement in jcl?
What is the function of //cntl statement?
How can a stopped job be started again?
What is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
What is catelog procedure and how many catelog procedure to use in one job?
How do you create a temporary dataset?
What is timing concept in mainframe?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
What are s0c1, s0c4, s0c5, s0c7 and socb?
What is Cataloged Procedures?