while Replication or synchronization is not available in Access 2007
so how does one should synchronize records between two or more databases?
My idea would be to have it done manually through query. any other ideas?
Yes, I have searched in google that replication is no longer supported in access 2007 but I am using Access 2007. And therefore, I really cannot use that function.
As has been stated several times in this thread A2007 supports replication for .mdb,.mde foramt but not for .accdb format. From having replicated databases running on A2007 I can confirm that is correct.sorry for phrasing it wrongly but what you have said dfenton is what I was trying to say that replication / synchronization is not available for the new access 2007 database format.
sorry for phrasing it wrongly but what you have said dfenton is what I was trying to say that replication / synchronization is not available for the new access 2007 database format.
INSERT INTO (;DATABASE=D:\rommelfiles\Database2.accdb) table1 ( ID, Fn, Mn )
SELECT table1.ID, table1.Fn, table1.Mn
FROM table1 LEFT JOIN (;DATABASE=D:\rommelfiles\Database2.accdb) table1 AS vDestination ON table1.ID = vDestination.ID
WHERE vDestination.ID Is Null;
>> There is no need to seek out some alternative simply because you're upgrading to A2007, which in no way, shape or form requires conversion to ACCDCB format. <<
Unless, of course, you wish to utilize the features of the new format that are not available in the .MDB format...
>> What good is a password that has to be embeded in your table links or provided to all the users? <<
That is incorrect, you do not need the pwd embedded in the table link to access a pwd protected db through a linked table.
You can create a connection to the back end programmatically and keep that connection in a global variable, you can then open your linked tables WITH OUT the pwd embedded. The trick is to Link first (with out the pwd), then add the pwd AFTER you link. Then open the connection to the BE via code in the initialization code of the FE ..