Image by Mudassar Iqbal from Pixabay
This topic describes how to view or configure remote server connection options at the server level in SQL Server 2017 by using SQL Server Management Studio or Transact-SQL.
In This Topic
Permissions
Executing sp_serveroption requires ALTER ANY LINKED SERVER permission on the server.
To view or configure remote server connection options
- In Object Explorer, right-click a server, and then click Properties.
- In the SQL Server Properties – server_name dialog box, click Connections.
- On the Connections page, review the Remote server connections settings, and modify them if necessary.
- Repeat steps 1 through 3 on the other server of the remote server pair.
To view remote server connection options
- Connect to the Database Engine.
- From the Standard bar, click New Query.
- Copy and paste the following example into the query window and click Execute. This example uses sp_helpserver to return information about all remote servers.
USE master; GO EXEC sp_helpserver ;
To configure remote server connection options
- Copy and paste the following example into the query window and click Execute. This example shows how to use sp_serveroption to configure a remote server. The example configures a remote server corresponding to another instance of SQL Server, SEATTLE3, to be collation compatible with the local instance of SQL Server.
USE master; EXEC sp_serveroption ‘SEATTLE3’, ‘collation compatible’, ‘true’;
Source: docs.microsoft.com