Forum Moderators: open
We currently do a JOIN across the databases, e.g.:
SELECT a.Field1, b.Field2
FROM TableA a INNER JOIN DB2.[dbo].TableB b ON a.ID=b.ID
Would there be any significant performance gain by moving TableB to DB1? And then we would just do:
SELECT a.Field1, b.Field2
FROM TableA a INNER JOIN TableB b ON a.ID=b.ID