With the knowledge obtained so far let me try to specify the problem. We have 2 standalone Access databases with exactly the same table and field structure, call them db1 and db2. We want to transfer (not replicate) data from db1 to db2. Specifically we want to transfer customer data, which is stored in tblCustomer of db1 into tblCustomer of db2. For simplicity, let's say we want to import into db2 the Name and Address of the customer, exactly as stored in db1, but without having to manually retype the data. The transfer needs to be handled automatically without any manual intervention.
One way to do the transfer is with an intermediate text file, but this ran into problems due to the fact that we have data stored in non-English (for example Greek). Actually the software (www.VisualDentist.com) is designed to work with any language.
Both db1 and db2 have a front end mde and a backend mdb. Table tblCustomer is stored in the mdb. We could perhaps make a copy of the backend mdb, delete all tables except tblCustomer and all records in tblCustomer which are not needed. Then have db2 read this mdb. It would be better if the mdb that would store the customer data was an mde and that db2 would read this mde. I have not tried this solution, which I must admit is not very smooth, but I feel that there will be several problems like
1) How do I delete the tables in the copied mdb.
2) Can the copied mdb be compacted to something reasonable for transfer purposes.
3) Can I create an mde based on the copied mdb
4) Can all the above be achieved with automatically with a click of a button
Thanks, John
One way to do the transfer is with an intermediate text file, but this ran into problems due to the fact that we have data stored in non-English (for example Greek). Actually the software (www.VisualDentist.com) is designed to work with any language.
Both db1 and db2 have a front end mde and a backend mdb. Table tblCustomer is stored in the mdb. We could perhaps make a copy of the backend mdb, delete all tables except tblCustomer and all records in tblCustomer which are not needed. Then have db2 read this mdb. It would be better if the mdb that would store the customer data was an mde and that db2 would read this mde. I have not tried this solution, which I must admit is not very smooth, but I feel that there will be several problems like
1) How do I delete the tables in the copied mdb.
2) Can the copied mdb be compacted to something reasonable for transfer purposes.
3) Can I create an mde based on the copied mdb
4) Can all the above be achieved with automatically with a click of a button
Thanks, John