I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
No Answer is Posted For this Question
Be the First to Post Answer
My JCL has 4 steps that execute PROC’s P1, P2, P3 and P4 as shown below //P1 EXEC PROC=P1 //P2 EXEC PROC=P2 //P3 EXEC PROC=P3 //P4 EXEC PROC=P4 There are four steps S1, S2, S3 and S4 in each PROC’s (i.e. P1, P2, P3 and P4) I want to execute only step S2 of PROC P2 and no other steps or PROC’s. How do you achieve this?
can we copy a file from fixed block to variable block and vice versa ....asap
Explain the purpose of dd dummy statement?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
What is timing concept in mainframe?
can a job be submitted through jcl only? is there another way to submit a job?
What is a PROC? What is the difference between an instream and a catalogued PROC?
i have 1000 records in input file and i want to sort it and the first 200 records to be placed in output file. how to do that??
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
A STEP has more than 1 file as INPUT. And we have to put all these records int 1 output file. How to do ? //InputF DD DSN=ID.File1 DSN=ID.File2 DSN=ID.File3
how to do automated restart when a job abends?
Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?