0

Is it possible to compress the data transfer between the asp.net and sql server r2 . I know about packet size in sql server using SinglePage Allocator and MultiPage Allocator

Data Source=(local);Initial Catalog=AdventureWorks;"
        + "Integrated Security=SSPI;Packet Size=512"

The above is a SinglePage Allocator. I have to know whether it is possible to reduce the data transfer when i save a form details to the sql server using asp.net(c#) and sql serverr2

4

1 回答 1

0

不,SQL Server 本身不支持压缩。有一些选项,您可以通过启用压缩的 VPN 传输流量,或在 SQL 服务器上设置 Web 服务,以公开您需要访问的数据。大多数 Web 服务和客户端都支持 gzip 压缩,您将从中受益。或者,有一些商业选项将支持 SQL 数据的压缩。

有关详细信息,请参阅此帖子: 可以压缩 SQL Server 网络流量吗?

于 2013-04-29T06:35:08.423 回答