Sep 24, 2002 #1 AlunR Technical User Jul 16, 2001 22 GB Is it possible to create a view of a table from another Database. I'd like to be able to view the files but not be able to update them. We have a third party DB and would like to be able to use another SQL db to store all our info.
Is it possible to create a view of a table from another Database. I'd like to be able to view the files but not be able to update them. We have a third party DB and would like to be able to use another SQL db to store all our info.
Sep 24, 2002 #2 stsuing Programmer Aug 22, 2001 596 US If it's on the same server just create a view and when you reference the other database use the full name E.G. Select * From [OtherDatabase].[DBO]. ODT Upvote 0 Downvote
If it's on the same server just create a view and when you reference the other database use the full name E.G. Select * From [OtherDatabase].[DBO]. ODT