I have been asked the following question, what would you look into when you want to improve a stored procedure performance? The stored procedure is returning some value and have three joins in it.
Other than making sure the joins are well written what one can do to make it perform better? This was a general question and no code was provided.
Any ideas?
I have been asked the following question, what would you look into when you
Share
There are a lot of things you can do to optimize procedures, but it sounds like your SQL statement is pretty simple. Some things to watch out for:
You can check out this website for more performance tips, but I think I covered most of what you need for simple statements:
SQL Optimizations School