Ask your own question, for FREE!
Computer Science 6 Online
OpenStudy (anonymous):

How to connect two databases in two servers with SQL Server ?

OpenStudy (anonymous):

You need to look into using sp_addlinkedserver. On one server, you would need to run: EXEC sp_addlinkedserver N'OtherServerName', N'SQL Server'; And then you can query the other server using the "four dot" method: SELECT * FROM OtherServerName.OtherDatabaseName.dbo.TableName

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!