you have one jcl .in sort step 5 files are there.if out of 5
files if one file is uncataloged or not there then how will
you correct your jcl so that problem does not come. you
should not create this file externally.how will u overcome
it.
Answers were Sorted based on User's Feedback
Answer / alokedeb@gmail.com
I agree with Haritha's answer, but the exception is say if
you want to dummy out the 3rd file. If you use "DD Dummy"
then the subsequent 4th and 5th file will not be processed.
So in the override you will have to manually remove the 3rd
file and push the 4th & 5th file above.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / venkat
you can override the uncataloged file with a dummy file or we can use two job steps in the jcl statement..one to create the 5th file using IEFBR14 utility and IEBGENER to copy records from a file to 5th file..........then sorting can be done.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / haritha
You can override the uncataloged file with a dummy file in
the jcl and run the jcl with the existing 4 files.
| Is This Answer Correct ? | 2 Yes | 2 No |
Explain dfsort utility?
which parameter is use to declare the name of dataset in dd statement?
can any one plzzzzzz tell the jcl code for creating ps using idcams
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
what happens when time=0 is given in jcl code. what happens when blksize=0 is given in jcl code. what is symbolic and overriding parameters and a example program.
i have a string of 80 chars i want to replace 4th char with "a"?
How to search strings in multiple dataset with conditions 'string1 & string2'?
When we give TYPERUN = SCAN , what are the syntax errors we get?
Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?
How to DEBUG a JCL?
if we have a job consist of two steps and each step calling a proc having 10 steps each then how many steps are counted only 2 or 22(10+10+1+1)? can we have more than 255 steps in a single job?