Are you talking about unionizing several partitioned tables or just joining
tables?
A view would potentially improve performance, if it were an indexed view,
but indexed views can't span databases.
If the tables are contained in seperate file groups on seperate disks
(whether they be in the same database or seperate databases), then you will
potentially benefit from parallel I/O. Rather than changing the logical
schema of your databases, first try placing each DB filegroup on seperate
disks and see if that improves things.
> Hi,
>
[quoted text clipped - 9 lines]
>
> Chuck
Chuck - 11 Jul 2008 15:16 GMT
Eric,
Thanks for your response. Yes, these are separate databases that reside on
the same disk. They are data packages.
I guess the main thing that I'm trying to get to is whether it's a better
idea to import the data into a single database or try to access the data from
separate databases which contain data for different time frames.
Thanks again for your help.
> Are you talking about unionizing several partitioned tables or just joining
> tables?
[quoted text clipped - 19 lines]
> >
> > Chuck