SQL Performance Question - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:29:58Z http://stackoverflow.com/feeds/question/513026 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/513026/sql-performance-question 3 SQL Performance Question Oliver S 2009-02-04T20:01:35Z 2009-02-04T21:04:12Z <p>Hi, I have a question regarding the performance of SQL. I will illustrate my problem with pseudocode.</p> <p>I am wondering which will preform better and by how much? Say for 10 items, on each page load. In .NET. Is is a lot faster? a little faster? A difference not noticable on SQL?</p> <pre><code>foreach(item in mylist) { CallSQLStoredProc(item.id); } </code></pre> <p>vs</p> <pre><code>int[] ids; // array of ids CallSQLStoredProc(ids) // stored procedure returns more than one row for each id </code></pre> http://stackoverflow.com/questions/513026/sql-performance-question/513050#513050 11 Answer by ocdecio for SQL Performance Question ocdecio 2009-02-04T20:06:03Z 2009-02-04T20:06:03Z <p>The second option will certainly be faster because it is a single network round trip, as well as a single SP call.</p> http://stackoverflow.com/questions/513026/sql-performance-question/513057#513057 0 Answer by Srdjan Pejic for SQL Performance Question Srdjan Pejic 2009-02-04T20:07:37Z 2009-02-04T20:07:37Z <p>On each page load, or the first time the page is loaded? I would not want to do that for every single postback in an ASP.NET page.</p> <p>To answer your question more directly, if you're able to get multiple records by sending multiple IDs, do that. More efficient and more scalable should you ever need more than 10 items.</p> http://stackoverflow.com/questions/513026/sql-performance-question/513059#513059 0 Answer by SQLMenace for SQL Performance Question SQLMenace 2009-02-04T20:07:53Z 2009-02-04T20:07:53Z <p>it all depends how the proc is coded, if you pass in 10 items in the 2nd proc and that proc then uses a cursor to get those rows then the first call might be faster</p> http://stackoverflow.com/questions/513026/sql-performance-question/513064#513064 2 Answer by Tom Ritter for SQL Performance Question Tom Ritter 2009-02-04T20:08:31Z 2009-02-04T20:08:31Z <p>Definetly the second, varying from about 10x faster to a little faster.</p> <p>If whatever you're doing with the id's can be done in a set operation, you'll get several times the performance gain than calling the SP individually.</p> <p>I regularly have procs that look like:</p> <blockquote> <pre><code>create procedure proc ( @ids varchar(max) ) as select * from users_tbl u inner join spiltCSVs(@ids) c on c.id = u.id --so on and so forth </code></pre> </blockquote> <p>That's a set based operation; as opposed to the procedural method using a cursor in the proc, or using the for loop to iterate over calling the procedure with an individual id.</p> http://stackoverflow.com/questions/513026/sql-performance-question/513076#513076 1 Answer by Tom H. for SQL Performance Question Tom H. 2009-02-04T20:11:03Z 2009-02-04T20:11:03Z <p>Since this wouldn't fit in a comment for ocdecio's answer...</p> <p>Just to expand on it... in most systems that I've seen the network traffic is the limiting factor for performance (assuming a reasonably tuned database and front-end code that isn't absolutely horrible). Even if your web server and database server are on the same machine, the interprocess communication can be a limiting factor if you have frequent calls back and forth between the two.</p> http://stackoverflow.com/questions/513026/sql-performance-question/513088#513088 0 Answer by Cade Roux for SQL Performance Question Cade Roux 2009-02-04T20:13:02Z 2009-02-04T20:55:18Z <p>How much faster the second will be really depends on too many things. The network overhead might be insignificant compared to the size of your result sets.</p> <p>There is another alternative (which should be faster than either depending on the locking behavior), which is to <a href="http://www.devx.com/dotnet/Article/26747" rel="nofollow">call all of them asynchronously</a> - then your page can effectively complete when the longest one completes. Obviously, this will require some additional coding.</p> <p>In this example, there is only one SP overhead. We'll assume the SP returns either a single rowset which the client will split/process or multiple rowsets:</p> <pre><code>int[] ids; // array of ids CallSQLStoredProc(ids) // stored procedure returns more than one row for each id </code></pre> <p>In this example, the SP call overheads are n times the single call. and the calls are serialized:</p> <pre><code>foreach(item in mylist) { CallSQLStoredProc(item.id); } </code></pre> <p>In the third alternative:</p> <pre><code>foreach(item in mylist) { StartSQLStoredProc(item.id); } // Continue building the page until you reach a point where you absolutely have to have the data wait(); </code></pre> <p>This still has the n DB call overheads, but the performance improvement can depend on the capacity of the SQL Server and network in order to parallelize the workload. In addition you get the benefit of the ability to start the SQL Server working while the page is building.</p> <p>The single SP solution can still win out, particularly if it can assemble a single result set with a UNION where the SQL Server can parallelize the task. However, if the result sets have separate schemas or the UNION cannot perform well, A multiple SP asynchronous solution can beat it out (and can also take advantage of the ability to do other work in the page).</p> http://stackoverflow.com/questions/513026/sql-performance-question/513137#513137 0 Answer by Syntax for SQL Performance Question Syntax 2009-02-04T20:25:56Z 2009-02-04T20:25:56Z <p>Iterating anything is going to always cause more overhead. There aren't many situations where iteration improves performance.</p> <p>My advice has always been to avoid 2 things in programming:</p> <ol> <li>if then else statments</li> <li>iteration</li> </ol> <p>You will always have situations where you will use both, but the less you use of them the more potential your application has to run faster and smoother.</p> http://stackoverflow.com/questions/513026/sql-performance-question/513342#513342 0 Answer by Spence for SQL Performance Question Spence 2009-02-04T21:04:13Z 2009-02-04T21:04:13Z <p>IF you want scalability in your application, you will want to use caching as much as possible. You should be running any shared queries only once and storing the result in the cache.</p> <p>As for your query, provided you aren't using cursors in the query for each ID, it should be faster provided that network latency has meaningful impact on what your doing. When in doubt, measure. I've been very surprised many times when I actually implemented timing on my functions to see how long different things took.</p> <p>In .net System.Diagnostics.StopWatch is your friend :).</p>