show/hide this revision's text 3 improved formatting

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

show/hide this revision's text 2 improved formatting, question.

A check list checklist for fixing C#/VB.Net .Net apps to sql-server timeout problems and improve execution time

I have run into this problem of users complaining either about very slow responses and/or timeout errors when using some applications in the past due to many reasons

A checklist for improving execution time between .

What type of solutions Net code and sql-server. Anything from the basic to weird have you used to fix this problem in the past?solutions is appreciated.

show/hide this revision's text 1

A check list for fixing C#/VB.Net apps to sql-server timeout problems

I have run into this problem of users complaining either about very slow responses and/or timeout errors when using some applications in the past due to many reasons.

What type of solutions from basic to weird have you used to fix this problem in the past?

    Post Made Community Wiki by Community