SQL Server跨数据库访问数据
使用代码如下:
select * from openrowset('SQLOLEDB','数据库IP';'用户名';'密码', 数据库名称.dbo.表名)
如果提示:
SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问。
1.开启Ad Hoc Distributed Queries组件,在sql查询编辑器中执行如下语句:
exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
2.关闭Ad Hoc Distributed Queries组件,在sql查询编辑器中执行如下语句:
exec sp_configure 'Ad Hoc Distributed Queries',0
reconfigure
exec sp_configure 'show advanced options',0
reconfigure
推荐您阅读更多有关于“ 数据库 ”的文章
以上内容如果对你有用,请收藏。
评论列表: