跨服务器修改表同时按照顺序关联两个没有关系的表

 

需要注意的就是 里面的排序的问题 同时常需要打开

openrowset

 

想用openrowset查询远程数据库,结果提示SQL Server 阻止了对组件 /'Ad Hoc Distributed Queries/' 的访问错误,在网上搜索了一下,找到解决方法:

启用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

 

 

posted on 2009-06-18 16:21  叮叮猫的编程世界  阅读(154)  评论(0编辑  收藏  举报