Heim  >  Artikel  >  Datenbank  >  SQLServer添加链接服务器

SQLServer添加链接服务器

WBOY
WBOYOriginal
2016-06-07 14:57:071745Durchsuche

无详细内容 无 --启用Ad Hoc Distributed Queries:exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure --关闭Ad Hoc Distributed Queries:exec sp_configure 'Ad Hoc Distributed Que

SQLServer添加链接服务器 SQLServer添加链接服务器
--启用Ad Hoc Distributed Queries:
exec sp_configure 'show advanced options',1 
reconfigure 
exec sp_configure 'Ad Hoc Distributed Queries',1 
reconfigure 
    

--关闭Ad Hoc Distributed Queries:
exec sp_configure 'Ad Hoc Distributed Queries',0 
reconfigure 
exec sp_configure 'show advanced options',0 
reconfigure

--添加服务
exec   sp_addlinkedserver  '服务器服务名','','SQLOLEDB','服务器服务名'
--添加登陆
exec   sp_addlinkedsrvlogin '服务器服务名','false',null,'sa','密码'

---启动存储过程
exec sp_serveroption '服务器服务名','rpc out','true'

--删除服务和登陆
exec sp_dropserver '服务器服务名','droplogins'


Select * From sys.servers


Select  top 1 * From [服务器服务名].[master].sys.databases

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn