Hi champs!
Is it possible to make a database View over two different database installations on different machines
Many thanks
kurlan
Hi champs!
Is it possible to make a database View over two different database installations on different machines
Many thanks
kurlan
Table views over multiple databases
DJeX
mcssnt
xzhutiger
Yes. It ispossible in SQL 2000. You can drag a table from another database to a view in the current database you are using.
example select query is:
SELECT *
FROM
dbo.Table1A INNER JOIN [Database2].dbo.Table1
ON dbo.Table1A.Key= [Database2].dbo.Table1.Key
Where Table1A is a table from current database
And Table1 is another table from another database named Database2