望穿秋水
管理&技术&业务 项目管理方面:加强通过工具辅助管理,构建Web项目管理系统来协助项目管理。技术开发方面:加强系统分析能力、架构设计能力,时刻把握新技术动态。业务方面:加强需求分析能力,使最终需求来源于客户又高于客户。

SQL Server 阻止了对组件“Ad Hoc Distributed Queries”的 STATEMENT“OpenRowset/OpenDatasource”的访问

开启组件:

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

关闭组件:

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

 

--导入用户信息
truncate table dbo.CustomerInfo
insert into RedPacket.dbo.CustomerInfo
select * from opendatasource('sqloledb','server=xxx.14.xxx.xxx;uid=sa;pwd=123;database=ma').ma.dbo.CustomerInfo

posted on 2023-09-05 19:11  望穿秋水  阅读(40)  评论(0编辑  收藏  举报