What do you do if you do not want to keep all the space
allocated to a dataset?
Answers were Sorted based on User's Feedback
Answer / guest
Specify the parameter RLSE ( release ) in the SPACE e.g.
SPACE=(CYL,(50,5,RLSE)
| Is This Answer Correct ? | 2 Yes | 0 No |
What are steplib and joblib?
i have 3 steps in my jcl, where i want to run only one step at a time depending on the variable. How should i give the condition statement... I have tried this with two steps which is working but not able to add condn for the 3rd step. can anyone help me... I want to know the cond stmt which i can code in step 3 and step4, so that only either step2 or step3 or step4 executes
i have records from 1 t0 100 . i need to open records from 10 to 18 and change the values in tht ? how can i do tht ?
Why we us SYSTSIN DD with IKJEFT01 (TSO Utility) to execute a COBOL DB2 program? Why can't we use SYSIN DD?
once we submitted the job to the operating system, how can we cancel the job before execution?
How to find out the number of records in a file using JCL
Do we need to code DCB parameters when using DISP position as MOD?
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.
What 3 guidelines do we have to follow when concatenating DD statements?
How to submit a jcl from cics?
how to resolve sb37,sd37 se37 abends
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?