Is this an efficient sql server query? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T20:19:12Z http://stackoverflow.com/feeds/question/463122 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/463122/is-this-an-efficient-sql-server-query 2 Is this an efficient sql server query? Blankman 2009-01-20T21:08:05Z 2009-02-19T03:19:38Z <p>Hi,</p> <p>If I write a sproc in this format, will sql server do this effeciently or should the sql 'weaving' be done on the server side (.net)?</p> <p>Note: this is just a rough idea of what my query looks like, there are more 'if' clauses the build up my query that I execute using 'exec'</p> <pre><code>declare @sql nvarchar(4000) declare @order nvarchar(4000) set @sql = 'select id, name' set @sql = @sql + ' ....' if(@sortOrder) set @order = 'order by name desc' exec @sql + @order </code></pre> http://stackoverflow.com/questions/463122/is-this-an-efficient-sql-server-query/463131#463131 0 Answer by Joe for Is this an efficient sql server query? Joe 2009-01-20T21:11:25Z 2009-01-20T21:11:25Z <p>Do you have a good reason for doing this as dynamic SQL?</p> <p>I've done what you have before in SQL server and it works fine; it's probably safer (depending on usage) than passing in fully formed SQL to a proc that just runs it blindly. </p> <p>If you're using SQL 2k5 or 2k8, you can use nvarchar(max) for longer strings.</p> http://stackoverflow.com/questions/463122/is-this-an-efficient-sql-server-query/463135#463135 -1 Answer by cmartin for Is this an efficient sql server query? cmartin 2009-01-20T21:12:27Z 2009-01-20T21:12:27Z <p>Yes.</p> <p>It compiles in the "exec" command. The speed difference should be minimal between that, and doing it all on .NET side.</p> <p>At some point and time, it compiles the SQL to some internal code. It can happen as .NET pushes it, or afterwards.</p> http://stackoverflow.com/questions/463122/is-this-an-efficient-sql-server-query/463137#463137 4 Answer by Robert C. Barth for Is this an efficient sql server query? Robert C. Barth 2009-01-20T21:13:25Z 2009-01-20T21:36:15Z <p>Instead of building up a SQL string, why not just use a case statement in the order by?</p> <p>e.g. (assuming one is sorting by first and/or last name on a table with FirstName and LastName fields)</p> <pre><code>order by case when @sortExpression = 'lastname asc' then CAST(LastName as sql_variant) when @sortExpression = 'firstname asc' then CAST(FirstName as sql_variant) end asc, case when @sortExpression = 'lastname desc' then CAST(LastName as sql_variant) when @sortExpression = 'firstname desc' then CAST(FirstName as sql_variant) end desc </code></pre> <p>In addition, if your order by clause is different each time via dynamic SQL, the query plan will never be re-used.</p> http://stackoverflow.com/questions/463122/is-this-an-efficient-sql-server-query/463165#463165 -5 Answer by orthod0ks for Is this an efficient sql server query? orthod0ks 2009-01-20T21:21:18Z 2009-01-20T21:21:18Z <p>I would build the rest of the query up to the order by ie.</p> <pre><code>@sql = 'SELECT id, name FROM myTable ORDER BY ' + @order </code></pre> <p>... and pass the column name and direction to the proc. That way is more secure because not much can be passed to an order by clause to cause any harm.</p> <p>To answer your question, yes, it is efficient.</p> http://stackoverflow.com/questions/463122/is-this-an-efficient-sql-server-query/463183#463183 1 Answer by casperOne for Is this an efficient sql server query? casperOne 2009-01-20T21:26:15Z 2009-01-20T21:26:15Z <p>I see two better ways to do this. Instead of using a dynamic SQL query, I would use an actual SQL statement in a stored procedure, cased by the things you want to order by:</p> <pre><code>select t.* from table as t order by case @val when 1 then column1 when 2 then column2 end </code></pre> <p>If you find that the order by is too dynamic and must be built up, or is easer to do so, then I would create a table-valued function which returns the set, and then create a dynamic sql statement against that:</p> <pre><code>select t.* from xfn_Function(@arg1, @arg2) as t order by t.col1, t.col2 </code></pre> <p>Where of course, t.col1, t.col2, etc, etc, are dynamically generated before you send the whole thing to the server.</p> http://stackoverflow.com/questions/463122/is-this-an-efficient-sql-server-query/463267#463267 2 Answer by le dorfier for Is this an efficient sql server query? le dorfier 2009-01-20T21:45:23Z 2009-01-29T22:53:18Z <p>The clearest, simplest, easiest, most optimizable way is to have complete SQL statements for each option.</p> http://stackoverflow.com/questions/463122/is-this-an-efficient-sql-server-query/481438#481438 0 Answer by Jimmy McNulty for Is this an efficient sql server query? Jimmy McNulty 2009-01-26T21:25:57Z 2009-01-26T21:25:57Z <p>To specifically answer your question, there will be no performance difference at all between a dynamic SQL statement which is formed in your .Net layer, and exactly the same SQL string which is formed inside a proc.</p> http://stackoverflow.com/questions/463122/is-this-an-efficient-sql-server-query/563824#563824 0 Answer by GuinnessFan for Is this an efficient sql server query? GuinnessFan 2009-02-19T03:19:38Z 2009-02-19T03:19:38Z <p>The most efficient is to get whatever data you want from the database and then handle the sorting in your application. Changing the order by isn't going to change the amount of data. If the user changes the sort order, why make another trip to the database?</p>