link query from orther MDB file

S

Souris

Is it possible to link query from other MDB database?


I would like to retrieve data from other MDB, it seems I need links to the
table and have a local query to retrieve data.

It will be nice to link a query from other MDB instead of link the table.


Your information is great appreicated,
 
K

Klatuu

You can use external non linked data with queries, but the performance is
reduces.

As an example:

SELECT * FROM tlbOther IN "\\SomeServer\SomeFolder\AnotherDatabase.mdb";
 
D

Douglas J. Steele

Or

SELECT * FROM
[;Database=\\SomeServer\SomeFolder\AnotherDatabase.mdb].tlbOther
 
K

Klatuu

Merry Christmas, Doug.
--
Dave Hargis, Microsoft Access MVP


Douglas J. Steele said:
Or

SELECT * FROM
[;Database=\\SomeServer\SomeFolder\AnotherDatabase.mdb].tlbOther

--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)
 
D

Douglas J. Steele

Same to you, Dave.

--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)


Klatuu said:
Merry Christmas, Doug.
--
Dave Hargis, Microsoft Access MVP


Douglas J. Steele said:
Or

SELECT * FROM
[;Database=\\SomeServer\SomeFolder\AnotherDatabase.mdb].tlbOther

--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)


Klatuu said:
You can use external non linked data with queries, but the performance
is
reduces.

As an example:

SELECT * FROM tlbOther IN
"\\SomeServer\SomeFolder\AnotherDatabase.mdb";

--
Dave Hargis, Microsoft Access MVP


:

Is it possible to link query from other MDB database?


I would like to retrieve data from other MDB, it seems I need links to
the
table and have a local query to retrieve data.

It will be nice to link a query from other MDB instead of link the
table.


Your information is great appreicated,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top