If I understand you right, you want the data to continue to reside in database B, but to be able to reference it from database A as if it were duplicated there.
I have no claim to be an expert in SQL Server, but it seems to me that you can get what you want by defining a view (or maybe a synonym) in A that selects all rows from the table in B. The physical table would continue to belong to B, but would look to users as if it were in A. This is fairly standard SQL, so it should work in most DBMS's
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.