what is inrec fields and outrec fields in sorting
Answers were Sorted based on User's Feedback
Answer / karthik
Inrec- Used to format the records before sorting
Outrec - Used to format the records after sorting
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / balaji
INREC - adds, deletes, or reformats fields before the
records are sorted or merged.
OUTREC - adds, deletes, or reformats fields after the
records are sorted or merged.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sushant kumar mohanty
INREC : Used to reformat records before they are processed by the SORT program.
OUTREC : Used to specify the format of records before they are written.
| Is This Answer Correct ? | 0 Yes | 3 No |
Name what parameter directs the output of the job log dataset?
How many steps we can overide in the proc's?
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?
In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
What is JOBLIB ?
How dummy is used in jcl?
How gdg are concatenated?
How can I write the joblog in the spool on normal end of a job step and direct the joblog to a dataset only if the step abends?
Explain COND used in JCL?
How can a fb file convert to vb file using sort program?
What are steplib and joblib?
Hi, all Suppose i have 10 step in a job (s1,s2,s3,...s10) i want to execute step9 first and then step3 and i used the DPRTY for these steps. so what will happen to other steps? Will the get executed or only these two steps get executed?