Hi! How can I link a table from one SQL Server database into another? I know that I can get a read-only view doing something like this:
But, I'm hoping for something that shows up as a table and with write access. Is there any way to do this?
Thanks! -- Mike
Code:
SELECT *
FROM OTHERDATABASE.dbo.TABLE
But, I'm hoping for something that shows up as a table and with write access. Is there any way to do this?
Thanks! -- Mike