Hi,
My dataset have multiple records, say 100. I want to start
copy records only after a record contain a specific value
that may be in a specific position. Secondly I want to stop
copying rest records if certain record contains a specific
value. Can it be done using SORT/ICETOOL utilities?
Answer Posted / srini
STOPAFT(100)
| Is This Answer Correct ? | 0 Yes | 9 No |
Post New Answer View All Answers
Can an individual step be restricted from using all the jobs allowed cpu time?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
Explain how can the submitting users racf authority be overridden in a job stream?
List the different jcl statements that are not permitted in the procedures?
What do you understand by jcl?
What are steplib and joblib?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
Explain the function of the steplib dd statement?
which parameter is used to check the syntax of a jcl without executing it?
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 is the function of //jcllib statement?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
What does a disposition of (MOD,DELETE,DELETE) mean ?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one