Hey everyone. I'm trying to think of ways to simulate a workfile without actually creating a physical file on the system. I've used arrays and data structures in the past, but that was for small amounts of data; the file I am processing now will most likely have 10s of thousands of records, if not 100s of thousands. The reason I need this "workfile" is because I have a file that needs to be sorted by company division, and this field is not included in the file that I am processing. So I need to use the facility number in the file and look up the division it is under, and have the whole file sorted by division so that I can create a report. One option that comes to mind is embedded SQL; I'm not entirely familiar with it, but I would like to learn more about it. Do you guys know of any other options? And if embedded SQL is the best option here, is there any good online documentation for it?
Thanks
Thanks