Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フェールオーバー オプションを使用して SQL Server 2008 R2 でリンク サーバーを作成する方法を知っている人はいますか? ありがとうございました。
私はすでに解決策を見つけました!
パラメータ @catalog を追加する必要があります
EXEC master.dbo.sp_addlinkedserver @server = N'MyLinkServer', @srvproduct=N'', @provider=N'SQLOLEDB', @provstr=N'Server=PRINCIPAL;FailoverPartner=SECONDARY;', @catalog='MyDatabaseName'
ありがとう!