I have a requirement where in i have to compare extract and load count and write a report as 'Y' if both counts match, else 'N'
Input 1: LRECL=18
ABCDEFG 0000001655
Input 2: LRECL=10
0000001654
Expected Output: LRECL=31
ABCDEFG <Input 1 count> <Input 2 count> Y/N
For the above example the output will be:
ABCDEFG 0000001655 0000001654 N
Can someone please help? Let me know in case more details are needed.