SQL Server
This topic has not yet been rated - Rate this topic

sp_testlinkedserver (Transact-SQL)

Tests the connection to a linked server. If the test is unsuccessful the procedure raises an exception with the reason of the failure.

Topic link icon Transact-SQL Syntax Conventions


          

sp_testlinkedserver [ @servername ] = servername
        
[ @servername = ]servername

Is the name of the linked server. servername is sysname, with no default value.

No permissions are checked; however, the caller must have the appropriate login mapping.

The following example creates a linked server named SEATTLESales, and then tests the connection.

USE master;
GO
EXEC sp_addlinkedserver 
    'SEATTLESales',
    N'SQL Server';
GO
sp_testlinkedserver SEATTLESales;
GO
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ