How do I open and talk to two different databased on the same server. I want to read from database 1, insert information from the record found in database 2 if it is not there, then update the record in database1 and read then next record in database 1. I could write a program to open database 1, read all the records, write to database 2, then write a second program to read all the records in database 2, then open database 1 and update all the records. But it would be easier if I could do it all at one.
Larry