SELECT T1.C1, T2.C2
FROM DB1Table T1
INNER JOIN DB2Table T2
ON T1.ID = T2.ID
and imagine they are on separate physical disk then SQL Server can make use of parallel scan across those disk. and if they are on same disk you won't get much performance gain.
No one has followed this question yet.