SIGN UP MEMBER LOGIN:    
Blog

Drop Linked Server IN Sql Server

Posted by Manish Dwivedi Blogs | SQL Server 2012 Nov 02, 2010
This blog will tell you, how to delete LinkedServer.
In previous  blog I told you about to add LinkedServer, if you haven't read that blog then Read Here

In this blog I am going to tell you, how to delete LinkedServer.

Execute this command from master DB.



EXEC
sp_dropserver
'LinkedServerName', 'droplogins'

This command removes the remote server servername and all associated remote logins from the local SQL Server.

You can also verify by executing this query.

SELECT
* FROM sys.
servers

share this blog :
post comment