You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/database-engine/configure-windows/view-or-configure-remote-server-connection-options-sql-server.md
+53-50Lines changed: 53 additions & 50 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: "View or Configure Remote Server Connection Options (SQL Server)"
3
3
description: Learn how to view or configure remote server connection options at the server level. You can use SQL Server Management Studio or Transact-SQL for this purpose.
4
4
author: rwestMSFT
5
5
ms.author: randolphwest
6
-
ms.date: "03/14/2017"
6
+
ms.date: 12/02/2024
7
7
ms.service: sql
8
8
ms.subservice: configuration
9
9
ms.topic: conceptual
@@ -14,79 +14,82 @@ helpviewer_keywords:
14
14
---
15
15
# View or Configure Remote Server Connection Options (SQL Server)
This topic describes how to view or configure remote server connection options at the server level in [!INCLUDE[ssnoversion](../../includes/ssnoversion-md.md)] by using [!INCLUDE[ssManStudioFull](../../includes/ssmanstudiofull-md.md)] or [!INCLUDE[tsql](../../includes/tsql-md.md)].
17
+
18
+
This article describes how to view or configure remote server connection options at the server level in [!INCLUDE[ssnoversion](../../includes/ssnoversion-md.md)] by using [!INCLUDE[ssManStudioFull](../../includes/ssmanstudiofull-md.md)] or [!INCLUDE[tsql](../../includes/tsql-md.md)].
1. Connect to the [!INCLUDE[ssDE](../../includes/ssde-md.md)].
34
55
35
-
### <aname="Security"></a> Security
56
+
1. From the **Standard** bar, select **New Query**.
36
57
37
-
#### <aname="Permissions"></a> Permissions
38
-
Executing **sp_serveroption** requires ALTER ANY LINKED SERVER permission on the server.
39
-
40
-
## <aname="SSMSProcedure"></a> Using SQL Server Management Studio
41
-
42
-
#### To view or configure remote server connection options
43
-
44
-
1. In Object Explorer, right-click a server, and then click **Properties**.
45
-
46
-
2. In the **SQL Server Properties - \<**_server_name_**>** dialog box, click **Connections**.
47
-
48
-
3. On the **Connections** page, review the **Remote server connections** settings, and modify them if necessary.
49
-
50
-
4. Repeat steps 1 through 3 on the other server of the remote server pair.
51
-
52
-
## <aname="TsqlProcedure"></a> Using Transact-SQL
53
-
54
-
#### To view remote server connection options
55
-
56
-
1. Connect to the [!INCLUDE[ssDE](../../includes/ssde-md.md)].
57
-
58
-
2. From the Standard bar, click **New Query**.
59
-
60
-
3. Copy and paste the following example into the query window and click **Execute**. This example uses [sp_helpserver](../../relational-databases/system-stored-procedures/sp-helpserver-transact-sql.md) to return information about all remote servers.
58
+
1. Copy and paste the following example into the query window and select **Execute**. This example uses [sp_helpserver](../../relational-databases/system-stored-procedures/sp-helpserver-transact-sql.md) to return information about all remote servers.
61
59
62
60
```sql
63
61
USE master;
64
62
GO
65
63
EXEC sp_helpserver ;
66
64
```
67
65
68
-
#### To configure remote server connection options
1.Connect to the [!INCLUDE[ssDE](../../includes/ssde-md.md)].
70
+
1. Connect to the [!INCLUDE[ssDE](../../includes/ssde-md.md)].
71
71
72
-
2.From the Standard bar, click**New Query**.
73
-
74
-
3.Copy and paste the following example into the query window and click**Execute**. This example shows how to use [sp_serveroption](../../relational-databases/system-stored-procedures/sp-serveroption-transact-sql.md) to configure a remote server. The example configures a remote server corresponding to another instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)], `SEATTLE3`, to be collation compatible with the local instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)].
72
+
1.From the **Standard** bar, select**New Query**.
73
+
74
+
1.Copy and paste the following example into the query window and select**Execute**. This example shows how to use [sp_serveroption](../../relational-databases/system-stored-procedures/sp-serveroption-transact-sql.md) to configure a remote server. The example configures a remote server corresponding to another instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)], `SEATTLE3`, to be collation compatible with the local instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)].
0 commit comments