English 中文(简体)
Monitoring SQL Server Bandwidth
原标题:

I think I can use NetMon to monitor traffic (b,kb,mb, gb) of my db (to/from) , however I dont know how to get a summary and breakdown of the traffic size.

Has anyone used Netmon for this and can either explain how or point me in the right direction.

Everything is local in my scenario , I just want to know the bandwidth usage of the db calls.

最佳回答

Are you trying to find the bytes sent/received from a particular query, or the amount of bandwidth being used for all queries under a given load?

If you want to get an idea of the bytes sent/received for a single query, just turn on "Include client statistics" under the Query menu in SQL Management studio.

If you want to see the network utilization under a load, the easiest way would be to generate a load from another machine and then use perfmon on the DB server and add the counters for the Network Interface s bytes sent/received to monitor the actual utilization.

If you are limited to one machine then you might be able to try something that can isolate a single processes network traffic, like netlimiter

问题回答

If your using SqlConnection from ADO.Net you can use the provider statistics to get the total number of bytes received and sent.





相关问题
Export tables from SQL Server to be imported to Oracle 10g

I m trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I m not using any constraints/...

SQL server: Can NT accounts be mapped to SQL server accounts

In our database we have an SQL server account that has the correct roles to access some of the databases. We are now switching to windows authentication and I was wondering if we can create a NT user ...

SQL Server 2000, ADO 2.8, VB6

How to determine if a Transaction is active i.e. before issuing Begin Transaction I want to ensure that no previous transaction are open.. the platform is VB6, MS-SQL Server 2000 and ADO 2.8

热门标签