Събитие
31.03, 23 ч. - 2.04, 23 ч.
Най-голямото събитие за обучение по SQL, Fabric и Power BI. 31 март – 2 април. Използвайте код FABINSIDER, за да спестите $400.
Регистрирайте се днесТози браузър вече не се поддържа.
Надстройте до Microsoft Edge, за да се възползвате от най-новите функции, актуализации на защитата и техническа поддръжка.
Applies to:
SQL Server
This article describes how to view or configure remote server connection options at the server level in SQL Server by using SQL Server Management Studio or Transact-SQL.
Важно
This feature will be removed in a future version of SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.
Executing sp_serveroption
requires ALTER ANY LINKED SERVER permission on the server.
In Object Explorer, right-click a server, and then select Properties.
In the SQL Server Properties - <server_name> dialog box, select 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.
Connect to the Database Engine.
From the Standard bar, select New Query.
Copy and paste the following example into the query window and select Execute. This example uses sp_helpserver to return information about all remote servers.
USE master;
GO
EXEC sp_helpserver ;
Connect to the Database Engine.
From the Standard bar, select New Query.
Copy and paste the following example into the query window and select 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';
The remote server must be stopped and restarted before the setting can take effect.
Събитие
31.03, 23 ч. - 2.04, 23 ч.
Най-голямото събитие за обучение по SQL, Fabric и Power BI. 31 март – 2 април. Използвайте код FABINSIDER, за да спестите $400.
Регистрирайте се днесОбучение
Модул
Employ remote management - Training
This module demonstrates the various tools for connecting remotely to a Windows client.
Сертифициране
Microsoft Certified: Azure Database Administrator Associate - Certifications
Administer an SQL Server database infrastructure for cloud, on-premises and hybrid relational databases using the Microsoft PaaS relational database offerings.
Документация
Logging In to SQL Server - SQL Server
Find out about different ways of signing in to an instance of SQL Server. Learn which format to use for the server name in various environments.
Can't connect remotely using TCP/IP - SQL Server
This article provides resolutions for the problem where users are not able to connect remotely to SQL Server using TCP/IP protocol.
Lesson 2: Connecting from Another Computer - SQL Server
Lesson 2: Connecting from Another Computer