Tyler
Tyler

Reputation: 3200

How Do I Profile the ADO.NET Connection Pool?

I'm profiling a ASP.NET web application. I believe it is very database connection intensive (excessive use of the ADO.NET connection pool). How to I tell w/out debugging how many times it is going to the pool and on average how many connections are available in the pool? Are there counters that will give me this info in PerfMon or some other tool?

Upvotes: 2

Views: 4324

Answers (1)

to StackOverflow
to StackOverflow

Reputation: 124696

Look at ADO.NET performance counters:

http://msdn.microsoft.com/en-us/library/ms254503.aspx

Upvotes: 4

Related Questions