哇我只是用sp_addlinkedserver玩,我不小心运行了这个命令:sp_addlinkedserver abc,’sql Server’
1)我有命令成功完成..但发生了什么事?
2)我如何撤消我做的?
解决方法
您创建了一个名为abc的服务器的链接.
select * from abc.master.information_schema.tables
但是(除非你真的有一个名为abc的服务器),它将返回类似于以下内容的消息:
OLE DB provider “sqlNCLI10” for linked server “abc” returned message
“A network-related or instance-specific error has occurred while
establishing a connection to sql Server. Server is not found or not
accessible. Check if instance name is correct and if sql Server is
configured to allow remote connections. For more information see sql
Server Books Online.”.
您可以在对象资源管理器中的服务对象>>链接服务器下的SSMS中查看链接的服务器.
要摆脱链接的服务器,请使用以下语句:
sp_dropserver abc