sqlserver 执行远程数据库代码


1.启用Ad Hoc Distributed Queries:

exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure


2.为了安全使用完成后,关闭Ad Hoc Distributed Queries:

exec sp_configure 'Ad Hoc Distributed Queries',0
reconfigure
exec sp_configure 'show advanced options',0
reconfigure


insert temp_bs select * from OPENDATASOURCE(
'SQLOLEDB',
'Data Source=192.0.0.42;User ID=sa;Password=sa'
).expert_120626.dbo.t_temp

posted on 2016-09-13 16:48  wang_cq  阅读(257)  评论(0编辑  收藏  举报