sql 跨域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 跨域相关的知识,希望对你有一定的参考价值。

1. 开通分布式查询权限

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

2. 查询

select * from openrowset(SQLOLEDB,192.168.1.6;sa;123,NETACS.dbo.tb_car) a
select * from opendatasource(SQLOLEDB,Data Source=192.168.1.6; User ID=sa; Password=123).NETACS.dbo.tb_car

3. 关闭

-- 注意执行顺序与 开通时 相反
exec sp_configure Ad Hoc Distributed Queries,0
reconfigure
exec sp_configure show advanced options,0
reconfigure

原文地址:http://www.veryhuo.com/a/view/16216.html

以上是关于sql 跨域的主要内容,如果未能解决你的问题,请参考以下文章

Nginx 跨域

Microsoft SQL Server 代码片段收集

缺少 SQL SERVER 2014 代码片段

sql Oracle代码片段

sql 日期转换代码片段 - Dato,120,konvertere

以下代码片段是不是容易受到 Rails 5 中 SQL 注入的影响?