同实例跨库
只需要 库名.dbo.表 dbo可省略 如:
use Test select * from rdrecordsselect * from oa.dbo.UserInfo
不同实例与不同ip是相同的
exec sp_addlinkedserver ‘ITSV ‘,‘ ‘,‘sqlolEDB ‘,‘.,1333‘ exec sp_addlinkedsrvlogin ‘ITSV ‘,‘false ‘,null,‘sa ‘,‘sa‘ select * from itsv.swIE.dbo.a_baseexec sp_dropserver ‘ITSV ‘,‘droplogins ‘
还可以这样
select * from openrowset( ‘sqlolEDB ‘,1333‘; ‘sa‘; ‘sa‘,swIE.dbo.a_base)/*执行出错 出下列信息时 要执行下边的开 *** 作消息 15281,级别 16,状态 1,第 1 行sql Server 阻止了对组件 ‘Ad Hoc distributed QuerIEs‘ 的总结
STATEMENT ‘OpenRowset/OpenDatasource‘ 的访问,
因为此组件已作为此服务器安全配置的一部分而被关闭。
系统管理员可以通过使用 sp_configure 启用 ‘Ad Hoc distributed QuerIEs‘。
有关启用 ‘Ad Hoc distributed QuerIEs‘ 的详细信息,请参阅 sql Server 联机丛书中的
"外围应用配置器"。*/--开exec sp_configure ‘show advanced options‘,1reconfigureexec sp_configure ‘Ad Hoc distributed QuerIEs‘,1reconfigure--关exec sp_configure ‘Ad Hoc distributed QuerIEs‘,0reconfigureexec sp_configure ‘show advanced options‘,0reconfigure
以上是内存溢出为你收集整理的SqlServer 跨库访问全部内容,希望文章能够帮你解决SqlServer 跨库访问所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)