Wrete a JCL to compare two files and mached records move to
onc file & un mached rows wants to another file?
Answer Posted / mainframeguru
can anyone tellme how to separate the duplicate records into the new dataset ,,, im not asking how to eliminate the duplicate records,,
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does a disposition of (MOD,DELETE,DELETE) mean ?
How can an in-stream dataset be terminated?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
What is the function of the steplib dd statement?
what is SOC4 error?
Is automatic restart possible in jcl? If yes, how?
What is the function of //cntl statement?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
Can we call instream to catalog and catalog to instream?
What are the rules employed while naming the steps in a job?
What is the significance of addrspc parameter in exec statement?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
How does jcl specify the job to the operating system?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move