Query Multiple Databases in same query
I have run into something that I haven't done before. I have three Access databases (I can not change this fact at this time, nor can I make a new database, combine them, or change them in any way.) each have distinct information, but I need to write queries that pull information from all of them.
For example:
Database1, tableA - ItemID, ItemName, ItemDescription, CategoryID
Database2, tableM - ItemID, ItemCost, ItemPrice
Database3, tableZ - CategoryID, CategoryName
I need to putput:
ItemName, ItemPrice, CategoryName
As I said, these databases are read only, and I can not create an intermediary database. I'd like to do the output in one query, instead of making sub queries that run in a loop to output the data. The databases are on the same server.
Is this even possible?
I can do it with looping, but the final output is about 2000 items, so that's a heavy server load.
Thanks!
Michelle
