欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Sql跨服务器访问数据操作实例

程序员文章站 2022-04-15 13:22:57
----开启服务器 exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'ad...

----开启服务器

exec sp_configure 'show advanced options',1

reconfigure

exec sp_configure 'ad hoc distributed queries',1

reconfigure

--访问数据库(可以进行数据操作)

select * from opendatasource('sqloledb','data source=a;user id=c;password=c').db.dbo.表名

----关闭服务器数据库

exec sp_configure 'ad hoc distributed queries',0

reconfigure

exec sp_configure 'show advanced options',0

reconfigure