My stack: Windows Forms, Harbour. XSharp in VS is current 2.20
This is a carryover.
Assume, you have two databases and a person CAN exist in both. I sync them up on a number, for example their SSN (Social Security Number) . One database could be Active and the other Retirees. I need to find persons who exists in both (or just under 15,000) and print a report.
Proposed solution:
part 1: starting with the original database, create a temporary table, sorted in the correct order and with limited number of people -NO index.
part 2: Close all tables.
part 3: Open the temp table we just created (remember, no index). Then, we open the the second database with its index. Loop: for each person in the temp table we search for them by the SSN and do some stuff if located.
part 4: end of story
Question: How to use dbcopy() - or something similar - on a table to create a DBF?
Cheers,
Roland

