Author: santoshn
Posted: Wed Jun 14, 2017 7:18 pm (GMT 5.5)
Sorry I could not reply earlier. I had access issues on mainframes.
This job is one of more expensive jobs so we are checking if any alternative can be implemented to reduce CPU times.
Both the files are unloads for tables so they are sorted with a default order.
Below is the SORT which compares and send delta:
Coded for you
Do it yourself next time
Posted: Wed Jun 14, 2017 7:18 pm (GMT 5.5)
Sorry I could not reply earlier. I had access issues on mainframes.
This job is one of more expensive jobs so we are checking if any alternative can be implemented to reduce CPU times.
Both the files are unloads for tables so they are sorted with a default order.
Below is the SORT which compares and send delta:
Code: |
SORT FIELDS=COPY JOINKEYS FILES=F1,FIELDS=(01,99,A,102,105,A,207,139,A,346,240,A, 586,47,A,633,254,A,887,254,A,1141,83,A, 1224,240,A,1464,21,A,1511,93,A,1604,3,A, 1607,17,A) JOINKEYS FILES=F2,FIELDS=(01,99,A,102,105,A,207,139,A,346,240,A, 586,47,A,633,254,A,887,254,A,1141,83,A, 1224,240,A,1464,21,A,1511,93,A,1604,3,A, 1607,17,A) JOIN UNPAIRED,F2,ONLY REFORMAT FIELDS=(F2:01,1623) OUTFIL FNAMES=SORTOUT, BUILD=(1:1,1623) |
Coded for you
Do it yourself next time