how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
No Answer is Posted For this Question
Be the First to Post Answer
My JCL have five steps & I created new versions of GDG in first step through fourth step & fifth step I was refered Step one GDG version. My JCL got abend at 4th step and how I can restart my JCL Please let me know the answers. //STEP1 EXEC GDG1(+1) DISP=(NEW) //STEP2 EXEC GDG1(+2) DISP=(NEW) //STEP3 EXEC GDG1(+3) DISP=(NEW) //STEP4 EXEC GDG1(+4) DISP=(NEW) //STEP5 EXEC GDG1(+1) DISP=(OLD)
11 Answers HCL, IBM, L&T, TCS,
How do you restart a PROC from a particular step?
How many JOB statements a JCL can have ? If there are more than one JOB statements in a JCL, are they submitted in succession or in parallel ?
I have a COBOL program that Accepts some input data. How do you code the JCL statement for this? ( How do you code instream data in a JCL? )
How to execute 2nd and 4th steps among 5 steps in jcl proc?
What are the kinds of job control statements?
how to compare two datasets without using superce because output is limited to 133 bytes
What is S322 abend ?
I have 15 flat files. each record in the files have the monthly salary for 12 months with the employee number. Now I want to concatenate the 15 files such that for the employee numbers that are common the o/p file should have only one record and the salaries should be concatenated to that record. How can we do it with JCL?
How can a fb file convert to vb file using sort program?
what is inrec fields and outrec fields in sorting
How can I override a dsn that is contained in a proc called by another proc? I need to do the override in the calling JCL.