exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc distributed QuerIEs',1
reconfigure
2.查询
select * from
openrowset( 'sqlolEDB ','IP地址(服务器名)'; '用户名'; '密码',[数据库名].[dbo].[表名]) a
,openrowset( 'sqlolEDB ',[数据库名].[dbo].[表名]) b
where *** GROUP by *** order by count(1) desc
3.然后换查询条件,然后修改IP、 库名和表名。
4.关闭
exec sp_configure 'Ad Hoc distributed QuerIEs',0
reconfigure
exec sp_configure 'show advanced options',0
reconfigure
以上是内存溢出为你收集整理的SQL Server 跨域查询(权限、语句、过程)全部内容,希望文章能够帮你解决SQL Server 跨域查询(权限、语句、过程)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)