--- description: "sp_addlinkedserver (Transact-SQL)" title: "sp_addlinkedserver (Transact-SQL)" ms.custom: "" ms.date: "11/16/2021" ms.prod: sql ms.prod_service: "database-engine" ms.reviewer: wiassaf ms.technology: system-objects ms.topic: "reference" f1_keywords: - "sp_addlinkedserver_TSQL" - "sp_addlinkedserver" dev_langs: - "TSQL" helpviewer_keywords: - "sp_addlinkedserver" author: markingmyname ms.author: maghan --- # sp_addlinkedserver (Transact-SQL) [!INCLUDE [SQL Server - ASDBMI](../../includes/applies-to-version/sql-asdbmi.md)] Creates a linked server. A linked server allows for access to distributed, heterogeneous queries against OLE DB data sources. After a linked server is created by using `sp_addlinkedserver`, distributed queries can be run against this server. If the linked server is defined as an instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)], remote stored procedures can be executed. ![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md) ## Syntax ```syntaxsql sp_addlinkedserver [ @server= ] 'server' [ , [ @srvproduct= ] 'product_name' ] [ , [ @provider= ] 'provider_name' ] [ , [ @datasrc= ] 'data_source' ] [ , [ @location= ] 'location' ] [ , [ @provstr= ] 'provider_string' ] [ , [ @catalog= ] 'catalog' ] ``` ## Arguments #### [ @server = ] *\'server\'* Is the name of the linked server to create. The argument *server* is **sysname**, with no default. #### [ @srvproduct = ] *\'product_name\'* Is the product name of the OLE DB data source to add as a linked server. The value *product_name* is **nvarchar(128)**, with a default of NULL. If the value is **SQL Server**, *provider_name*, *data_source*, *location*, *provider_string*, and *catalog* do not have to be specified. #### [ @provider = ] *\'provider_name\'* Is the unique programmatic identifier (PROGID) of the OLE DB provider that corresponds to this data source. The *provider_name* must be unique for the specified OLE DB provider installed on the current computer. The value *provider_name* is **nvarchar(128)**, with a default of NULL; however, if *provider_name* is omitted, SQLNCLI is used. > [!NOTE] > Using SQLNCLI will redirect [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] to the latest version of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Native Client OLE DB Provider. The OLE DB provider is expected to be registered with the specified PROGID in the registry. > [!IMPORTANT] > The previous Microsoft OLE DB Provider for SQL Server (SQLOLEDB) and SQL Server Native Client OLE DB provider (SQLNCLI) remain deprecated and it is not recommended to use either for new development work. Instead, use the new [Microsoft OLE DB Driver for SQL Server](../../connect/oledb/oledb-driver-for-sql-server.md) (MSOLEDBSQL) which will be updated with the most recent server features. #### [ @datasrc = ] *\'data_source\'* Is the name of the data source as interpreted by the OLE DB provider. The value *data_source* is **nvarchar(**4000**)**. *data_source* is passed as the DBPROP_INIT_DATASOURCE property to initialize the OLE DB provider. #### [ @location = ] *\'location\'* Is the location of the database as interpreted by the OLE DB provider. The value *location* is **nvarchar(**4000**)**, with a default of NULL. The argument *location* is passed as the DBPROP_INIT_LOCATION property to initialize the OLE DB provider. #### [ @provstr = ] *\'provider_string\'* Is the OLE DB provider-specific connection string that identifies a unique data source. The value *provider_string* is **nvarchar(**4000**)**, with a default of NULL. The argument *provstr* is either passed to IDataInitialize or set as the DBPROP_INIT_PROVIDERSTRING property to initialize the OLE DB provider. When the linked server is created against the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Native Client OLE DB provider, the instance can be specified by using the SERVER keyword as `SERVER=servername\\instancename` to specify a specific instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]. The *servername* is the name of the computer on which [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] is running, and *instancename* is the name of the specific instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] to which the user will be connected. > [!NOTE] > To access a mirrored database, a connection string must contain the database name. This name is necessary to enable failover attempts by the data access provider. The database can be specified in the **\@provstr** or **\@catalog** parameter. Optionally, the connection string can also supply a failover partner name. #### [ @catalog = ] *\'catalog\'* Is the catalog to be used when a connection is made to the OLE DB provider. The value *catalog* is **sysname**, with a default of NULL. The argument *catalog* is passed as the DBPROP_INIT_CATALOG property to initialize the OLE DB provider. When the linked server is defined against an instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)], catalog refers to the default database to which the linked server is mapped. ## Return Code Values 0 (success) or 1 (failure) ## Result Sets None. ## Remarks The following table shows the ways that a linked server can be set up for data sources that can be accessed through OLE DB. A linked server can be set up more than one way for a particular data source; there can be more than one row for a data source type. This table also shows the `sp_addlinkedserver` parameter values to be used for setting up the linked server. |**Remote OLE DB data source**|**OLE DB provider**|**product_name**|**provider_name**|**data_source**|**location**|**provider_string**|**catalog**| |-------------------------------|---------------------|-------------------|--------------------|------------------|--------------|----------------------|-------------| |[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]|[!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Native Client OLE DB Provider|[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] 1 (default)|||||| |[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]|[!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Native Client OLE DB Provider||**SQLNCLI**|Network name of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] (for default instance)|||Database name (optional)| |[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]|[!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Native Client OLE DB Provider||**SQLNCLI**|*servername*\\*instancename* (for specific instance)|||Database name (optional)| |Oracle, version 8 and later|Oracle Provider for OLE DB|Any|**OraOLEDB.Oracle**|Alias for the Oracle database|||| |Access/Jet|Microsoft OLE DB Provider for Jet|Any|**Microsoft.Jet.OLEDB.4.0**|Full path of Jet database file|||| |ODBC data source|Microsoft OLE DB Provider for ODBC|Any|**MSDASQL**|System DSN of ODBC data source|||| |ODBC data source|[!INCLUDE[msCoName](../../includes/msconame-md.md)] OLE DB Provider for ODBC|Any|**MSDASQL**|||ODBC connection string|| |File system|[!INCLUDE[msCoName](../../includes/msconame-md.md)] OLE DB Provider for Indexing Service|Any|**MSIDXS**|Indexing Service catalog name|||| |[!INCLUDE[msCoName](../../includes/msconame-md.md)] Excel Spreadsheet|[!INCLUDE[msCoName](../../includes/msconame-md.md)] OLE DB Provider for Jet|Any|**Microsoft.Jet.OLEDB.4.0**|Full path of Excel file||Excel 5.0|| |IBM DB2 Database|[!INCLUDE[msCoName](../../includes/msconame-md.md)] OLE DB Provider for DB2|Any|**DB2OLEDB**|||See [!INCLUDE[msCoName](../../includes/msconame-md.md)] OLE DB Provider for DB2 documentation.|Catalog name of DB2 database| 1 This way of setting up a linked server forces the name of the linked server to be the same as the network name of the remote instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]. Use *data_source* to specify the server. 2 "Any" indicates that the product name can be anything. The [!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Native Client OLE DB provider is the provider that is used with [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] if no provider name is specified or if [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] is specified as the product name. Even if you specify the older provider name, SQLOLEDB, it will be changed to SQLNCLI when persisted to the catalog. The *data_source*, *location*, *provider_string*, and *catalog* parameters identify the database or databases the linked server points to. If any one of these parameters is NULL, the corresponding OLE DB initialization property is not set. In a clustered environment, when you specify file names to point to OLE DB data sources, use the universal naming convention name (UNC) or a shared drive to specify the location. The stored procedure `sp_addlinkedserver` cannot be executed within a user-defined transaction. > [!IMPORTANT] > Azure SQL Managed Instance currently supports only SQL Server, SQL Database, and other SQL Managed Instance as remote data sources. > [!IMPORTANT] > When a linked server is created by using `sp_addlinkedserver`, a default self-mapping is added for all local logins. For non- [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] providers, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Authenticated logins may be able to gain access to the provider under the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] service account. Administrators should consider using `sp_droplinkedsrvlogin , NULL` to remove the global mapping. ## Permissions The `sp_addlinkedserver` statement requires the **ALTER ANY LINKED SERVER** permission. (The [!INCLUDE[ssManStudioFull](../../includes/ssmanstudiofull-md.md)] **New Linked Server** dialog box is implemented in a way that requires membership in the `sysadmin` fixed server role.) ## Examples ### A. Use the Microsoft SQL Server OLE DB Provider The following example creates a linked server named `SEATTLESales`. The product name is `SQL Server`, and no provider name is used. ```sql USE master; GO EXEC sp_addlinkedserver N'SEATTLESales', N'SQL Server'; GO ``` The following example creates a linked server `S1_instance1` on an instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] by using the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] OLE DB driver. ```sql EXEC sp_addlinkedserver @server=N'S1_instance1', @srvproduct=N'', @provider=N'MSOLEDBSQL', @datasrc=N'S1\instance1'; ``` The following example creates a linked server `S1_instance1` on an instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] by using the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Native Client OLE DB provider. > [!IMPORTANT] > SQL Server Native Client OLE DB provider (SQLNCLI) remains deprecated and it is not recommended to use it for new development work. Instead, use the new [Microsoft OLE DB Driver for SQL Server](../../connect/oledb/oledb-driver-for-sql-server.md) (MSOLEDBSQL) which will be updated with the most recent server features. ```sql EXEC sp_addlinkedserver @server=N'S1_instance1', @srvproduct=N'', @provider=N'SQLNCLI', @datasrc=N'S1\instance1'; ``` ### B. Use the Microsoft OLE DB Provider for Microsoft Access The Microsoft.Jet.OLEDB.4.0 provider connects to Microsoft Access databases that use the 2002-2003 format. The following example creates a linked server named `SEATTLE Mktg`. > [!NOTE] > This example assumes that both [!INCLUDE[msCoName](../../includes/msconame-md.md)] Access and the sample `Northwind` database are installed and that the `Northwind` database resides in C:\Msoffice\Access\Samples on the same server as the SQL Server instance. ```sql EXEC sp_addlinkedserver @server = N'SEATTLE Mktg', @provider = N'Microsoft.Jet.OLEDB.4.0', @srvproduct = N'OLE DB Provider for Jet', @datasrc = N'C:\MSOffice\Access\Samples\Northwind.mdb'; GO ``` ### C. Use the Microsoft OLE DB Provider for ODBC with the data_source parameter The following example creates a linked server named `SEATTLE Payroll` that uses the [!INCLUDE[msCoName](../../includes/msconame-md.md)] OLE DB Provider for ODBC (`MSDASQL`) and the *data_source* parameter. > [!NOTE] > The specified ODBC data source name must be defined as System DSN in the server before you use the linked server. ```sql EXEC sp_addlinkedserver @server = N'SEATTLE Payroll', @srvproduct = N'', @provider = N'MSDASQL', @datasrc = N'LocalServer'; GO ``` ### D. Use the Microsoft OLE DB Provider for Excel spreadsheet To create a linked server definition using the [!INCLUDE[msCoName](../../includes/msconame-md.md)] OLE DB Provider for Jet to access an Excel spreadsheet in the 1997 - 2003 format, first create a named range in Excel by specifying the columns and rows of the Excel worksheet to select. The name of the range can then be referenced as a table name in a distributed query. ```sql EXEC sp_addlinkedserver 'ExcelSource', 'Jet 4.0', 'Microsoft.Jet.OLEDB.4.0', 'c:\MyData\DistExcl.xls', NULL, 'Excel 5.0'; GO ``` To access data from an Excel spreadsheet, associate a range of cells with a name. The following query can be used to access the specified named range `SalesData` as a table by using the linked server set up previously. ```sql SELECT * FROM ExcelSource...SalesData; GO ``` If [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] is running under a domain account that has access to a remote share, a UNC path can be used instead of a mapped drive. ```sql EXEC sp_addlinkedserver 'ExcelShare', 'Jet 4.0', 'Microsoft.Jet.OLEDB.4.0', '\\MyServer\MyShare\Spreadsheets\DistExcl.xls', NULL, 'Excel 5.0'; ``` ### E. Use the Microsoft OLE DB Provider for Jet to access a text file The following example creates a linked server for directly accessing text files, without linking the files as tables in an Access .mdb file. The provider is `Microsoft.Jet.OLEDB.4.0` and the provider string is `Text`. The data source is the full path of the directory that contains the text files. A schema.ini file, which describes the structure of the text files, must exist in the same directory as the text files. For more information about how to create a schema.ini file, see the Jet Database Engine documentation. First, create a linked server. ```sql EXEC sp_addlinkedserver txtsrv, N'Jet 4.0', N'Microsoft.Jet.OLEDB.4.0', N'c:\data\distqry', NULL, N'Text'; ``` Set up login mappings. ```sql EXEC sp_addlinkedsrvlogin txtsrv, FALSE, Admin, NULL; ``` List the tables in the linked server. ```sql EXEC sp_tables_ex txtsrv; ``` Query one of the tables, in this case `file1#txt`, using a four-part name. ```sql SELECT * FROM txtsrv...[file1#txt]; ``` ### F. Use the Microsoft OLE DB Provider for DB2 The following example creates a linked server named `DB2` that uses the `Microsoft OLE DB Provider for DB2`. ```sql EXEC sp_addlinkedserver @server=N'DB2', @srvproduct=N'Microsoft OLE DB Provider for DB2', @catalog=N'DB2', @provider=N'DB2OLEDB', @provstr=N'Initial Catalog=PUBS; Data Source=DB2; HostCCSID=1252; Network Address=XYZ; Network Port=50000; Package Collection=admin; Default Schema=admin;'; ``` ### G. Add a [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] as a Linked Server For Use With Distributed Queries on Cloud and On-Premises Databases You can add a [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] as a linked server and then use it with distributed queries that span the on-premises and cloud databases. This is a component for database hybrid solutions spanning on-premises corporate networks and the Azure cloud. The [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] box product contains the distributed query feature, which allows you to write queries to combine data from local data sources and data from remote sources (including data from non- [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] data sources) defined as linked servers. Every [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] (except the logical server's `master` database) can be added as an individual linked server and then used directly in your database applications as any other database. The benefits of using [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] include manageability, high availability, scalability, working with a familiar development model, and a relational data model. The requirements of your database application determine how it would use [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] in the cloud. You can move all of your data at once to [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)], or progressively move some of your data while keeping the remaining data on-premises. For such a hybrid database application, [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] can now be added as linked servers and the database application can issue distributed queries to combine data from [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] and on-premises data sources. Here's a simple example explaining how to connect to a [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] using distributed queries. First, add one Azure SQL Database as linked server, using the using SQL Server Native Client. ```sql EXEC sp_addlinkedserver @server='LinkedServerName', @srvproduct='', @provider='sqlncli', @datasrc='ServerName.database.windows.net', @location='', @provstr='', @catalog='DatabaseName'; ``` Add credentials and options to this linked server. ```sql EXEC sp_addlinkedsrvlogin @rmtsrvname = 'LinkedServerName', @useself = 'false', @rmtuser = 'LoginName', @rmtpassword = 'myPassword'; EXEC sp_serveroption 'LinkedServerName', 'rpc out', true; ``` Now, use the linked server to execute queries using four-part names, even to create a new table and insert data. ```sql EXEC ('CREATE TABLE SchemaName.TableName(col1 int not null CONSTRAINT PK_col1 PRIMARY KEY CLUSTERED (col1) )') at LinkedServerName; EXEC ('INSERT INTO SchemaName.TableName VALUES(1),(2),(3)') at LinkedServerName; ``` Query the data using four-part names: ```sql SELECT * FROM LinkedServerName.DatabaseName.SchemaName.TableName; ``` ### H. Create SQL Managed Instance linked server with managed identity Azure AD authentication To create a linked server with managed identity authentication, execute the following T-SQL. The authentication method uses `ActiveDirectoryMSI` in the `@provstr` parameter. Consider optionally using `@locallogin = NULL` to allow all local logins. ```sql EXEC master.dbo.sp_addlinkedserver @server = N'MyLinkedServer', @srvproduct = N'', @provider = N'MSOLEDBSQL', @provstr = N'Server=mi.35e5bd1a0e9b.database.windows.net,1433;Authentication=ActiveDirectoryMSI;'; EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname = N'MyLinkedServer', @useself = N'False', @locallogin = N'user1@domain1.com'; ``` If Azure SQL Managed Instance managed identity (formerly called managed service identity) is added as login to a remote managed instance, then Managed Identity authentication is possible with linked server created as in the previous example. Both system assigned and user assigned managed identities are supported. If primary identity is set, it will be used, otherwise system assigned managed identity will be used. If managed identity is recreated with the same name, login on the remote instance also needs to be recreated, because new managed identity Application ID and Managed Instance service principal SID no longer match. To verify these two values match, convert SID to application ID with following query. ```sql SELECT convert(uniqueidentifier, sid) as AADApplicationID FROM sys.server_principals WHERE name = ''; ``` ### I. Create SQL Managed Instance linked server with pass-through Azure AD authentication To create a linked server with pass-through authentication execute following T-SQL. ```sql EXEC master.dbo.sp_addlinkedserver @server = N'MyLinkedServer', @srvproduct = N'', @provider = N'MSOLEDBSQL', @datasrc = N'mi.35e5bd1a0e9b.database.windows.net,1433'; ``` With pass-through authentication, security context of the local login is carried over to a remote instance. Pass-through authentication requires the AAD principal to be added as login on both local and remote Azure SQL Managed Instance. Both Managed Instances need to be in a [Server Trust Group](/azure/azure-sql/managed-instance/server-trust-group-overview). When the requirements are met, user can sign in to a local instance and query the remote instance via the linked server object. ## See also - [Distributed Queries Stored Procedures (Transact-SQL)](../../relational-databases/system-stored-procedures/distributed-queries-stored-procedures-transact-sql.md) - [sp_addlinkedsrvlogin (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-addlinkedsrvlogin-transact-sql.md) - [sp_addserver (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-addserver-transact-sql.md) - [sp_dropserver (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-dropserver-transact-sql.md) - [sp_serveroption (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-serveroption-transact-sql.md) - [sp_setnetname (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-setnetname-transact-sql.md) - [System Stored Procedures (Transact-SQL)](../../relational-databases/system-stored-procedures/system-stored-procedures-transact-sql.md) - [System Tables (Transact-SQL)](../../relational-databases/system-tables/system-tables-transact-sql.md)