A job has 150 steps i want to execute only 57th step
Answers were Sorted based on User's Feedback
Answer / piyush mani
it's easy write restart=step57 in job parameter and write cond in 58th step like cond = (x,eq) where x is expected return code of 57th step.
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / karthik
Include following two parameters in job card
restart=step57,COND=(0,LE)
by karthik
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / prashant singh
We can also use IEBEDIT utility which will be usefull
without editning the original JCL
| Is This Answer Correct ? | 2 Yes | 0 No |
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
Say I have a file with 12 records. Each record has the name of the month. I have to append data in these 12 records into 1 record. How is it possible?
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
How can we see data in TEMPARARY DATA SET in JCL ?
While using SORT FILES =NONE,XSUM I am getting error "ICE172A E XSUM IS NOT SUPPORTED - USE ICETOOL SELECT IF APPROPRIATE"..I want to write duplicate records a a serparte file..how i can do tht?
How can a stopped job be started again?
what is the difference between JES3 and JES2?
How is a new GDG coded?
If we want to see the eliminated duplicate record thru SORT, how its output file will be managed
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)
What is QSAM error usually when it is occurs?
Suppose i have a file with 10 recs and i want to skip only the 7 th record and copy the rest into another file. How do i do it using SORT?