Why are parameters slower than literal values in a where clause? - Stack Overflow most recent 30 from stackoverflow.com2010-03-18T07:58:44Zhttp://stackoverflow.com/feeds/question/1392307http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1392307/why-are-parameters-slower-than-literal-values-in-a-where-clause1Why are parameters slower than literal values in a where clause?Chrishttp://stackoverflow.com/users/591982009-09-08T06:33:03Z2009-09-08T14:53:53Z
<p>Situation: c#, sql 2000</p>
<p>I have a table, lets call it 'mytable' with 30 million rows.
The primary key is made up of fields A and B:</p>
<pre><code>A char(16)
B smallint(2)
</code></pre>
<p>When i do a search like this, it runs really slowly (eg it does a full tablescan)</p>
<pre><code>string a="a";
int b=1;
string sql = "select * from table(nolock) where a=@a and b=@b";
using (SqlCommand cmd = new SqlCommand(sql, conn))
{
cmd.Parameters.AddWithValue("@a", a);
cmd.Parameters.AddWithValue("@b", b);
using (SqlDataReader rdr = cmd.ExecuteReader()) {...}
}
</code></pre>
<p>Change it to this however, and it runs really quick (eg it hits the index):</p>
<pre><code>string where =
String.Format("a='{0}' and b={1}", a, b);
string sql = "select * from table(nolock) where " + where;
using (SqlCommand cmd = new SqlCommand(sql, conn))
{
using (SqlDataReader rdr = cmd.ExecuteReader()) {...}
}
</code></pre>
<p>What on earth is going on? Seems strange to me.</p>
http://stackoverflow.com/questions/1392307/why-are-parameters-slower-than-literal-values-in-a-where-clause/1392311#13923113Answer by Jon Skeet for Why are parameters slower than literal values in a where clause?Jon Skeethttp://stackoverflow.com/users/226562009-09-08T06:36:01Z2009-09-08T06:36:01Z<p>Does it make any difference if you declare the <code>b</code> variable to be a <code>short</code> instead of <code>int</code>?
Does it make any difference if you explicitly specify the types of the parameters?
Does it make any difference if you use "where a=@a and b=@b" instead of the comma form?</p>
<p>I agree this does sound odd, and I wouldn't really expect any of these changes to help, but it's probably worth a try.</p>
http://stackoverflow.com/questions/1392307/why-are-parameters-slower-than-literal-values-in-a-where-clause/1392325#13923257Answer by gbn for Why are parameters slower than literal values in a where clause?gbnhttp://stackoverflow.com/users/275352009-09-08T06:40:23Z2009-09-08T08:02:48Z<p>Do data types of parameter and column match? They don't it appears so <a href="http://msdn.microsoft.com/en-us/library/ms190309.aspx" rel="nofollow">datatype precedence</a> applies</p>
<p>The column is smallint, but you send int. The column will be converted to int because it has a higher precedence. So it won't use an index.</p>
http://stackoverflow.com/questions/1392307/why-are-parameters-slower-than-literal-values-in-a-where-clause/1392340#13923400Answer by Scoregraphic for Why are parameters slower than literal values in a where clause?Scoregraphichttp://stackoverflow.com/users/861432009-09-08T06:45:23Z2009-09-08T06:45:23Z<p>You may tell SQL Server which index to use for a query. Use the <code>WITH (INDEX = INDEX_ID)</code> option where INDEX_ID is the ID of the index.</p>
<p>Get index ID's with:</p>
<pre><code>SELECT i.indid, i.name FROM sysindexes i
INNER JOIN sysobjects o ON o.ID = i.id
WHERE o.Name = 'table'
</code></pre>
<p>So try then:</p>
<pre><code>SELECT * FROM table(NOLOCK) WITH (INDEX = 1) WHERE a=@a and b=@b
</code></pre>
http://stackoverflow.com/questions/1392307/why-are-parameters-slower-than-literal-values-in-a-where-clause/1392368#13923680Answer by shahkalpesh for Why are parameters slower than literal values in a where clause?shahkalpeshhttp://stackoverflow.com/users/235742009-09-08T06:53:32Z2009-09-08T06:53:32Z<p>As @gbn said, setting the data type should make it easy for you.</p>
<pre><code>string where =
String.Format("a='{0}' and b={1}", a, b);
</code></pre>
<p>In the example above, you are telling SQL to treat parameter a as char.<br />
Whereas, in other example it will be treated as a varchar.</p>
<p>Use SQL profiler to see what is the SQL that gets executed in both the cases. That should clear it for you.</p>
http://stackoverflow.com/questions/1392307/why-are-parameters-slower-than-literal-values-in-a-where-clause/1392466#13924660Answer by Jerry Bullard for Why are parameters slower than literal values in a where clause?Jerry Bullardhttp://stackoverflow.com/users/892632009-09-08T07:20:57Z2009-09-08T07:20:57Z<p>In the first case you are adding SqlParameter classes to the command. When the command is executed it is most likely generating DECLARE statements with the wrong data type. (You can verify this with a SQL trace.) If this is the case, the optimizer cannot select the correct index and falls back to a table scan. </p>
<p>If you use a stored proc instead, you would be forcing the parameters into the data types you declare. However, you can still do this from code if you specify the SqlDbType on the parameters.</p>