首页 > 代码库 > SQL Server远程连接操作
SQL Server远程连接操作
-- 开启远程选项 exec sp_configure ‘show advanced options‘,1 reconfigure exec sp_configure ‘Ad Hoc Distributed Queries‘,1 reconfigure -- 方法1: SELECT top 5 * FROM OPENDATASOURCE(‘SQLOLEDB‘,‘Data Source=192.168.2.208;User ID=sa;Password=ccpg@2015‘).[CCPG_PM].dbo.[COM_UserInfo] P where p.[GC_Flag]=0 -- 方法2: SELECT top 5 * FROM OPENROWSET(‘SQLNCLI‘,‘192.168.2.208‘;‘sa‘;‘ccpg@2015‘,‘select * from [CCPG_PM].dbo.[COM_UserInfo] P where p.[GC_Flag]=0‘) AS a -- 关闭远程选项 exec sp_configure ‘Ad Hoc Distributed Queries‘,0 reconfigure exec sp_configure ‘show advanced options‘,0 reconfigure
SQL Server远程连接操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。