我是靠谱客的博主 幸福小猫咪,最近开发中收集的这篇文章主要介绍SqlServer通过sql语句访问指定IP地址的数据库1.启用 'Ad Hoc Distributed Queries' 2.查询demo:SELECT * FROM OPENDATASOURCE( 'SQLOLEDB','DataSource=192.168.120.191;User ID=sa;Password=123456').FuelDataMgt.dbo.Operator
,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
1.启用 'Ad Hoc Distributed Queries'
exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
2.查询demo:SELECT * FROM OPENDATASOURCE
(
'SQLOLEDB','
DataSource=192.168.120.191;
User ID=sa;
Password=123456'
).FuelDataMgt.dbo.Operator
demo:SELECT * FROM OPENDATASOURCE
(
'SQLOLEDB','
DataSource=192.168.120.191;
User ID=sa;
Password=123456'
).FuelDataMgt.dbo.Operator
3.关闭 'Ad Hoc Distributed Queries'
exec sp_configure 'Ad Hoc Distributed Queries',0
reconfigure
exec sp_configure 'show advanced options',0
reconfigure
最后
以上就是幸福小猫咪为你收集整理的SqlServer通过sql语句访问指定IP地址的数据库1.启用 'Ad Hoc Distributed Queries' 2.查询demo:SELECT * FROM OPENDATASOURCE( 'SQLOLEDB','DataSource=192.168.120.191;User ID=sa;Password=123456').FuelDataMgt.dbo.Operator 的全部内容,希望文章能够帮你解决SqlServer通过sql语句访问指定IP地址的数据库1.启用 'Ad Hoc Distributed Queries' 2.查询demo:SELECT * FROM OPENDATASOURCE( 'SQLOLEDB','DataSource=192.168.120.191;User ID=sa;Password=123456').FuelDataMgt.dbo.Operator 所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复