by thermalchu » Fri Aug 31, 2012 3:37 pm
Since all IDs in both files are unique and same, I'm trying to do one-to-one matching. And will run compare twice.
Before I was able to compare first 3000 bytes of 7000 bytes by using this:
//DFSPARM DD *
OPTION DYNALLOC=(SYSDA,70),AVGRLEN=7000
/*
//TOOLIN DD *
SELECT FROM(SORTIN) TO(OUTPUT) ON(1,3000,CH) NODUPS
/*
Now I thought I will compare for first 3500 bytes like this:
//DFSPARM DD *
OPTION DYNALLOC=(SYSDA,200)
/*
//TOOLIN DD *
SELECT FROM(SORTIN) TO(OUTPUT) ON(1,3500,CH) NODUPS
/*
Eventhough allocating 200 SYSDA's it shows:
ICE046A 0 SORT CAPACITY EXCEEDED