Sqlserver 2005 跨数据库 导入数据

时间:2021-06-07 17:35:10

--Sqlserver 2005 跨数据库 导入数据:
--SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问
--启用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
----------------------------------------------
/**
insert into openrowset('sqloledb','目的服务器名';'sa';'',目的数据库.dbo.表)
select * from 源数据库..表
*/
--eg:
insert into openrowset('sqloledb','127.0.0.1';'sa';'sa',newDbName.dbo.tabName)
select * from dbName..tabName