I need to determine how much network traffic is being sent between a SQL Server 2008 R2 Dev Edition and an Ado.Net client running Win 7. I thought there should be a Dynamic Management View, but somehow I cannot find anything useful.

有帮助吗?

解决方案

sys.dm_exec_connections:

  • num_reads Number of packet reads that have occurred over this connection. Is nullable.
  • num_writes Number of data packet writes that have occurred over this connection. Is nullable.
    ...
  • net_packet_size Network packet size used for information and data transfer. Is nullable.
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top