sellis may be using only Access.
Yes there is a way, like this:
'----------------------------------
SELECT Employees.FirstName From Employees IN 'C:\db1.mdb'
union
SELECT Employees.FirstName From Employees;
'----------------------------
just make sure to use unoin or union all properly.
Remember that breaking up your data may have it's dangers. Try to move away from access and use at leats MSDE, preferably SQL Server. You could also create another database to denormalize your data and use it just for reporting. Repopulate it nightly from scheduled job from OS.
Sal
|