I have 2 files. File F1 contains the account number range and File F2 contains the list of account numbers. If the account numbers in File F2 falls under the account range defined in F1, then those account numbers from F2 should be written into output
Contents of F1 - will contain only 1 record
----+----1----+----2----+----3----+----4-
'A100' 'A400'
Contents of File F2
----+----1
A001
A010
A105
A299
A351
A545
A999
Since account A105, A299 and A351 falls under the range, it should be written out to output
----+----1
A105
A299
A351
Can you please guide me in how to get this accomplished using Syncsort or SORT
Thanks
Sikkandhar