M
Maury Markowitz
I have two databases I work with, one in SQL Server and another in
Pervasive. There are numerous times where I would like to run a query
comparing data in the two systems. This is easy enough to do from a
MDB, but our main application is an ADP.
Can anyone offer suggestions on easy ways to handle this situation?
For instance, consider this simple example: I need to know what
inventory items have been entered into one system but not the other.
Under the MDB I simply link to both tables and then issue a SELECT
that JOINs the two. Presto. But how to do this in an ADP?
One solution would be to have an MDB that simply links to every table
on either side, and then call _that_ from the ADP. Does anyone have
any examples of this? Does this require the entire MDB to be loaded
up? Or is this relatively "cheap"?
Another solution would be to use a linked server under SQL Server to
make the PSQL tables appear on the SQL system. However, I am not sure
if this makes cross-system queries possible. I have not seen any
examples of this anyway, can anyone point to some?
Maury
Pervasive. There are numerous times where I would like to run a query
comparing data in the two systems. This is easy enough to do from a
MDB, but our main application is an ADP.
Can anyone offer suggestions on easy ways to handle this situation?
For instance, consider this simple example: I need to know what
inventory items have been entered into one system but not the other.
Under the MDB I simply link to both tables and then issue a SELECT
that JOINs the two. Presto. But how to do this in an ADP?
One solution would be to have an MDB that simply links to every table
on either side, and then call _that_ from the ADP. Does anyone have
any examples of this? Does this require the entire MDB to be loaded
up? Or is this relatively "cheap"?
Another solution would be to use a linked server under SQL Server to
make the PSQL tables appear on the SQL system. However, I am not sure
if this makes cross-system queries possible. I have not seen any
examples of this anyway, can anyone point to some?
Maury