I am currently trying to take two databases and syncronise them, I have two tables in each and they both need to be done.
the first one will never have any duplicate rows as the primary key is based on a machine the software is interfacing with and a Timestamp. If the best way to sync this table to copy one table into one of the DB's and then merge them, then overwrite the other DB's table with the merged one.
the other table has changes and additions that can be made. I have a changes table that records added records and edited records. this way I know which row need to be updated, again the question I am asking is how would I copy the table from one DB to another and insert it into a temporary table.
I am doing this from a Sync Program I am making in VB.Net and I am using the JET system to connect to the Databases.
the first one will never have any duplicate rows as the primary key is based on a machine the software is interfacing with and a Timestamp. If the best way to sync this table to copy one table into one of the DB's and then merge them, then overwrite the other DB's table with the merged one.
the other table has changes and additions that can be made. I have a changes table that records added records and edited records. this way I know which row need to be updated, again the question I am asking is how would I copy the table from one DB to another and insert it into a temporary table.
I am doing this from a Sync Program I am making in VB.Net and I am using the JET system to connect to the Databases.