November 16, 2010 at 7:19 am
Hi Guys,
I noticed in the pro filer that an Stored procedure taking less reads but duration is uncountable ,
If i execute the same SP in Query window it returning results in a second
What might be the problem ,Please guide me
November 16, 2010 at 7:48 am
help us help you...when i read your question, i think the question is "when i profile my procedure, it never finishes. when i just run it, it is fast"
is that correct?
or is this a question about SOMETIMES your procedure is slow, and sometimes it is fast(parameter sniffing?)
Lowell
November 16, 2010 at 8:36 pm
Let me explain what actually happened
We found that application was slow ,So we switched on profiler to find the slow running query.
As we measure the performance of query/SP in terms of reads,CPU,Duration etc.we saw the SP which is taking less reads but uncountable duration (Milli seconds).We thought that this SP might slowing down the application and took the profiler data of that SP and executed in query window but it hardly took an second.If this Sp is not of performance issue then why the duration in profiler was very very high?
I hope you i reached you.
November 17, 2010 at 1:06 am
Did you run the SP or did you run the T-SQL code which is part of SP?
If it is latter, I'll agree with Lowell's second point. It's highly likely due to parameter sniffing.
November 17, 2010 at 2:34 am
I ran whole SP,Then what might be the reason for uncountable duration for that SP?
Is there any way to reduce the duration?
November 17, 2010 at 2:46 am
Does your SP accepts parameters? If yes, pls modify the parameters to different sets of values and observe the time taken by it. is it same?
Profiler does nothing but gives you details of the SP which was invoked by a process or a user.
November 17, 2010 at 4:48 am
I checked with as you suggested and it returning the same . what the duration accounts for?
November 17, 2010 at 5:13 am
Duration is the total time spent by that SP/Query. Its measured in milliseconds.
November 17, 2010 at 5:16 am
Is there any way to reduce it as it going beyond the count..
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply