K
Kamil
Hi.
I need to periodically append new data from another database (located
in different country).
Now I'm using ADO (with DSN) to download whole tables (INSERT INTO xxx
SELECT ...).
My question is: how to select only specific records on the remote side
to avoid downloading big tables?
My tables have complex, multi-field keys. So I was thinking:
SELECT * FROM RemoteTable WHERE RemoteTable.A<>LocalTable.A AND
RemoteTable.B<>LocalTable.B
It won't work because my query is executed in ADODB connection (so on
the other side).
How can I automatically synchronize my base with remote one?
I'm using Access 2007, remote db is Oracle.
Thanks for help.
Kamil
I need to periodically append new data from another database (located
in different country).
Now I'm using ADO (with DSN) to download whole tables (INSERT INTO xxx
SELECT ...).
My question is: how to select only specific records on the remote side
to avoid downloading big tables?
My tables have complex, multi-field keys. So I was thinking:
SELECT * FROM RemoteTable WHERE RemoteTable.A<>LocalTable.A AND
RemoteTable.B<>LocalTable.B
It won't work because my query is executed in ADODB connection (so on
the other side).
How can I automatically synchronize my base with remote one?
I'm using Access 2007, remote db is Oracle.
Thanks for help.
Kamil