vote up 2 vote down star
1

A checklist for improving execution time between .Net code and sql-server. Anything from the basic to weird solutions is appreciated.

Code:

Change default timeout in command and connection by avgbody

Use stored procedure calls instead of inline sql statement by avgbody

Look for blocking/locking using Activity monitor by Jay Shepherd

Sql-Server:

Watch out for parameter sniffing in stored procedures by AlexCuse

Beware of dynamically growing the database by Martin Clarke

Use Profiler to find any queries/stored procedures taking longer then 100 milliseconds by BradO

Increase transaction timeout by avgbody

Convert dynamic stored procedures into static ones by avgbody

Check how busy the server is by Jay Shepherd

flag

8 Answers

vote up 2 vote down

A weird "solution" for complaints on long response time is to have a more interesting progress bar. Meaning, work on the user's feeling. One example is the Vista wait icon. That fast rotating circle, gives the feeling things are going faster. Google uses the same trick on Android (at least the version I've seen).

However, I suggest trying to address the technical problem first, and working on human behavior only when you're out of choices.

Asaf.

link|flag
vote up 1 vote down

Are you using stored procs? If so you should watch out for parameter sniffing. In certain situations this can make for some very long running queries. Some reading:

http://blogs.msdn.com/queryoptteam/archive/2006/03/31/565991.aspx

http://blogs.msdn.com/khen1234/archive/2005/06/02/424228.aspx

link|flag
vote up 0 vote down

First and foremost - Check the actual query being ran. I use sql profiler as I setup through my program and check that all my queries are using correct joins and referencing keys when I can.

link|flag
vote up 0 vote down

A few quick ones...

  • Check Processor use of server to see if it's just too busy
  • Look for blocking/locking going on with the Activity monitor
  • Network issues/performance
link|flag
vote up 0 vote down

In the past some of my solutions have been:

  1. Fix the default time out settings of the sqlcommand:

    Dim myCommand As New SqlCommand("[dbo].[spSetUserPreferences]", myConnection)

    myCommand.CommandType = CommandType.StoredProcedure

    myCommand.CommandTimeout = 120

  2. Increase connection timeout string:

    Data Source=mydatabase;Initial Catalog=Match;Persist Security Info=True;User ID=User;Password=password;Connection Timeout=120

  3. Increase transaction time-out in sql-server 2005

    In management studio’s Tools > Option > Designers Increase the “Transaction time-out after:” even if “Override connection string time-out value for table designer updates” checked/unchecked.

  4. Convert dynamic stored procedures into static ones

  5. Make the code call a stored procedure instead of writing an inline sql statement in the code.

link|flag
vote up 0 vote down

Run Profiler to measure the execution time of your queries.
Check application logging for any deadlocks.

link|flag
vote up 0 vote down

I like using Sql Server Profiler as well. I like to setup a trace on a client site on their database server for a good 15-30 minute chunk of time in the midst of the business day and log all queries/stored procs with an Duration > 100 milliseconds....thats my criteria anyway for "long-running" queries

link|flag
vote up 0 vote down

Weird one that applied to sql server 2000 that might still apply today; make sure that you aren't trying to dynamically grow the db in production. There comes a point where the amount of time it takes to allocate that extra space and your normal load running will cause your queries to timeout (and the growth too!)

link|flag

Your Answer

Get an OpenID
or

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