vote up 0 vote down star

Hello,

I am struggling with a strange problem using Sql Profiler. While running some performance testing scripts, I run profiler to find bottlenecks. One particular statement seems to be taking a lot of time - with CPU 1407, Reads 75668 and Duration of 175.

However when I run the same statement in Management Studio, SQL Profiler returns CPU 16, Reads 4 & Duration 55.

Can anyone point me towards what I am doing wrong, as I am completely baffled by this.

Thanks, Susan.

flag
Perhaps you are not doing anything wrong and are seeing the results of caching. If you profile again, does the time taken shrink? – Lieven Jun 23 at 11:27
Thanks for the tip but I cleared the cache first. – Susan Jun 23 at 13:36

3 Answers

vote up 0 vote down

If you run the query in enterprise manager directly after the profiling, all pages it needs will be cached in memory. This can lead to drastic improvements.

If you right-click the server in Enterprise Manager and select Properties, you can change the amount of memory available to the server. If you change this number even one step, SQL server will flush its cache.

link|flag
vote up 0 vote down

Was a java/hibernate issue.

link|flag
vote up 3 vote down

You may have a scalar user defined function that has table access.

The resources used are only picked up by profiler: SSMS won't show the internal IO or CPU of the scalar udf.

Example:

CREATE FUNCTION dbo.MyUdf (
    @param int
)
AS
RETURNS int
BEGIN
    RETURN (SELECT MAX(foo) FROM dbo.MyOtherTable WHERE Key = @param)
END
GO


SELECT
    col1, col2, dbo.MyUdf(col3)
FROM
    dbo.MyFirstTable

However, this may not explain duration...

link|flag
1  
+1 I wouldn't have thought of that. – Lieven Jun 23 at 11:31
2  
Thanks. It's a common gotcha and is effectively a CURSOR if you think about it... – gbn Jun 23 at 11:34
I think it may be using a cursor as I'm seeing this in the sql traced sometimes exec sp_prepexec – Susan Jun 23 at 15:33
@Susan: can you post the offending statement please? – gbn Jun 23 at 16:28
We got a little more information, we found that the statement is called from a Java/Hibernate combination and something about the way the call is being made is returning 50,000 rows instead of the 2 rows returned when the statement is executed directly – Susan Jul 15 at 10:43
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.