Hi I have a web application with nhibernate talking to the database.
The application is running very slow due to lot of chatty db calls that nhibernate is doing. I want to run a profiler or something similar that can give some stats example
- number of db trips.
- table names and times accessed.
I saw one of the products called nhprof . I am wondering if there is something open source or free available out there or some other technique that i can use to meet the goal here.
Edit: I am using SQL Server 2005 .