SQL Server远程连接操作
Posted hllive
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;[email protected]‘).[CCPG_PM].dbo.[COM_UserInfo] P where p.[GC_Flag]=0 -- 方法2: SELECT top 5 * FROM OPENROWSET(‘SQLNCLI‘,‘192.168.2.208‘;‘sa‘;‘[email protected]‘,‘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远程连接操作的主要内容,如果未能解决你的问题,请参考以下文章
pymssql连接sql server报错:pymssql._pymssql.OperationalError