Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE SQL VIEW MyView CONNECTION MyConnection ;
AS SELECT * FROM FirstServer.MyDatabase.dbo.MyTable ;
JOIN SecondServer.MyOtherDatabase.dbo.MyOtherTable ;
ON <condition> ;
WHERE <condition>
I think the problem here is he has a separate connection string for each database.