Questions tagged [nhprof]

A profiler designed specifically for NHibernate.

25 questions
0
votes
1 answer

NHProfiler type tool for Rails ActiveRecord

In the .NET world there is an awesome product called NHProfiler which provides insights into database activity via NHibernate. It can detect common problems (such as N+1 issues), and report on them from observing the queries that your application…
Michael Shimmins
  • 19,961
  • 7
  • 57
  • 90
0
votes
2 answers

Query duration in NHibernate Profiler

I have an ASP .Net MVC application which uses Fluent NHibernate to access an oracle database. I also use NHibernate Profiler for monitoring the queries generated by NHibernate. I have one query which is really simple (selecting all rows from a table…
Knut Marius
  • 1,588
  • 18
  • 40
0
votes
1 answer

What does the symbol [/] mean in NHibernate Profiler?

What does this little symbol mean in NHProf? Why is it there in Session #1 but not Session #3?
ctrlShiftBryan
  • 27,092
  • 26
  • 73
  • 78
0
votes
1 answer

Clearing NHibernate Cache Inbetween Profiling Runs with NHProf

We are attepting to profile our NHibernate application using NHProf. We have a series of unit tests which exercise various calls. However, if we run the unit test multiple times, we get differing results in NHProf: Session 1 [1] Session 2…
Cory Foy
  • 7,202
  • 4
  • 31
  • 34
0
votes
1 answer

NHibernate begin transaction and commit with no statements takes more then 4 seconds

I run Nh-Prof on our production and found that the time to open NHibernate session, begin transaction and commit sometimes takes more than 4 seconds even there are no state/queries to database. ** I know that open transaction and commit it with no…
Haimon
  • 227
  • 1
  • 14
0
votes
1 answer

"Using a single session in multiple threads is likely a bug" error in NHProf when using NServiceBus

When executing an NServiceBus handler that uses NHibernate for its data access operations, I am seeing an error that I am not sure if I need to be concerned with. The handler has code that does something like this: using (var tx =…
SteveBering
  • 947
  • 1
  • 12
  • 30
0
votes
1 answer

Setting up HProf for Hibernate

How do I setup NhProf for Hibernate?
Quintin Par
  • 15,862
  • 27
  • 93
  • 146
0
votes
3 answers

NHibernate Linq uses implicit transaction?

I'm using Ayende's NHibernate Linq version 2.1.2, available here, and when I use NHProf to inspect queries that use this method: public IQueryable GetAll() { return Session.Linq(); } It gives me the warning that I'm using an implicit…
Daniel T.
  • 37,212
  • 36
  • 139
  • 206
0
votes
1 answer

Stack Trace Window in NHProfiler not show source code

I've been using NHProf for awhile and I've found it really useful but I haven't been able to get the Stack Trace window to work like I've seen in a tekpub video were it showed the line and file of the source code making the nhibernate seession…
Cliff Mayson
  • 483
  • 5
  • 15
0
votes
1 answer

Something wierd with NHProfiler

Hello i was using nhprofiler and it was working fine now it dont wanna even start i click on it to start get timecapsule then nothing happens any idea what can be wrong? Maybe someone has same problem?
Endiss
  • 699
  • 2
  • 10
  • 23
1
2