Why is inserting into and joining #temp tables faster?? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T05:37:36Zhttp://stackoverflow.com/feeds/question/921931http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/921931/why-is-inserting-into-and-joining-temp-tables-faster4Why is inserting into and joining #temp tables faster??Joseph Kingry2009-05-28T16:42:23Z2009-05-29T21:08:22Z
<p>I have a query that looks like </p>
<pre><code>SELECT
P.Column1,
P.Column2,
P.Column3,
...
(
SELECT
A.ColumnX,
A.ColumnY,
...
FROM
dbo.TableReturningFunc1(@StaticParam1, @StaticParam2) AS A
WHERE
A.Key = P.Key
FOR XML AUTO, TYPE
),
(
SELECT
B.ColumnX,
B.ColumnY,
...
FROM
dbo.TableReturningFunc2(@StaticParam1, @StaticParam2) AS B
WHERE
B.Key = P.Key
FOR XML AUTO, TYPE
)
FROM
(
<joined tables here>
) AS P
FOR XML AUTO,ROOT('ROOT')
</code></pre>
<p>P has ~ 5000 rows
A and B ~ 4000 rows each</p>
<p>This query has a runtime performance of ~10+ minutes.</p>
<p>Changing it to this however:</p>
<pre><code>SELECT
P.Column1,
P.Column2,
P.Column3,
...
INTO #P
SELECT
A.ColumnX,
A.ColumnY,
...
INTO #A
FROM
dbo.TableReturningFunc1(@StaticParam1, @StaticParam2) AS A
SELECT
B.ColumnX,
B.ColumnY,
...
INTO #B
FROM
dbo.TableReturningFunc2(@StaticParam1, @StaticParam2) AS B
SELECT
P.Column1,
P.Column2,
P.Column3,
...
(
SELECT
A.ColumnX,
A.ColumnY,
...
FROM
#A AS A
WHERE
A.Key = P.Key
FOR XML AUTO, TYPE
),
(
SELECT
B.ColumnX,
B.ColumnY,
...
FROM
#B AS B
WHERE
B.Key = P.Key
FOR XML AUTO, TYPE
)
FROM #P AS P
FOR XML AUTO,ROOT('ROOT')
</code></pre>
<p>Has a performance of ~4 seconds.</p>
<p>This makes not a lot of sense, as it would seem the cost to insert into a temp table and then do the join should be higher by default. My inclination is that SQL is doing the wrong type of "join" with the subquery, but maybe I've missed it, there's no way to specify the join type to use with correlated subqueries. </p>
<p>Is there a way to achieve this without using #temp tables/@table variables via indexes and/or hints?</p>
<p>EDIT: Note that dbo.TableReturningFunc1 and dbo.TableReturningFunc2 are inline TVF's, not multi-statement, or they are "parameterized" view statements.</p>
http://stackoverflow.com/questions/921931/why-is-inserting-into-and-joining-temp-tables-faster/921941#9219418Answer by Quassnoi for Why is inserting into and joining #temp tables faster??Quassnoi2009-05-28T16:45:44Z2009-05-29T20:45:20Z<p>Your procedures are being reevaluated for each row in <code>P</code>.</p>
<p>What you do with the temp tables is in fact caching the resultset generated by the stored procedures, thus removing the need to reevaluate.</p>
<p>Inserting into a temp table is fast because it does not generate <code>redo</code> / <code>rollback</code>.</p>
<p>Joins are also fast, since having a stable resultset allows possibility to create a temporary index with an <code>Eager Spool</code> or a <code>Worktable</code></p>
<p>You can reuse the procedures without temp tables, using <code>CTE</code>'s, but for this to be efficient, <code>SQL Server</code> needs to materialize the results of <code>CTE</code>.</p>
<p>You may <em>try</em> to force it do this with using an <code>ORDER BY</code> inside a subquery:</p>
<pre><code>WITH f1 AS
(
SELECT TOP 1000000000
A.ColumnX,
A.ColumnY
FROM dbo.TableReturningFunc1(@StaticParam1, @StaticParam2) AS A
ORDER BY
A.key
),
f2 AS
(
SELECT TOP 1000000000
B.ColumnX,
B.ColumnY,
FROM dbo.TableReturningFunc2(@StaticParam1, @StaticParam2) AS B
ORDER BY
B.Key
)
SELECT …
</code></pre>
<p>, which may result in <code>Eager Spool</code> generated by the optimizer.</p>
<p>However, this is far from being guaranteed.</p>
<p>The guaranteed way is to add an <code>OPTION (USE PLAN)</code> to your query and wrap the correspondind <code>CTE</code> into the <code>Spool</code> clause.</p>
<p>See this entry in my blog on how to do that:</p>
<ul>
<li><a href="http://explainextended.com/2009/05/28/generating-xml-in-subqueries/" rel="nofollow"><strong>Generating XML in subqueries</strong></a></li>
</ul>
<p>This is hard to maintain, since you will need to rewrite your plan each time you rewrite the query, but this works well and is quite efficient.</p>
<p>Using the temp tables will be much easier, though.</p>
http://stackoverflow.com/questions/921931/why-is-inserting-into-and-joining-temp-tables-faster/922034#9220342Answer by Frans for Why is inserting into and joining #temp tables faster??Frans2009-05-28T17:02:35Z2009-05-28T17:11:10Z<p>It is a problem with your sub-query referencing your outer query, meaning the sub query has to be compiled and executed for <em>each row</em> in the outer query.
Rather than using explicit temp tables, you can use a derived table.
To simplify your example: </p>
<pre><code>SELECT P.Column1,
(SELECT [your XML transformation etc] FROM A where A.ID = P.ID) AS A
</code></pre>
<p>If P contains 10,000 records then SELECT A.ColumnX FROM A where A.ID = P.ID will be executed 10,000 times.<br />
You can instead use a derived table as thus: </p>
<pre><code>SELECT P.Column1, A2.Column FROM
P LEFT JOIN
(SELECT A.ID, [your XML transformation etc] FROM A) AS A2
ON P.ID = A2.ID
</code></pre>
<p>Okay, not that illustrative pseudo-code, but the basic idea is the same as the temp table, except that SQL Server does the whole thing in memory: It first selects all the data in "A2" and constructs a temp table in memory, then joins on it. This saves you having to select it to TEMP yourself.</p>
<p>Just to give you an example of the principle in another context where it may make more immediate sense. Consider employee and absence information where you want to show the number of days absence recorded for each employee. </p>
<p><strong>Bad:</strong> (runs as many queryes as there are employees in the DB) </p>
<pre><code>SELECT EmpName,
(SELECT SUM(absdays) FROM Absence where Absence.PerID = Employee.PerID) AS Abstotal
FROM Employee
</code></pre>
<p><strong>Good:</strong> (Runs only two queries)</p>
<pre><code>SELECT EmpName, AbsSummary.Abstotal
FROM Employee LEFT JOIN
(SELECT PerID, SUM(absdays) As Abstotal
FROM Absence GROUP BY PerID) AS AbsSummary
ON AbsSummary.PerID = Employee.PerID
</code></pre>
http://stackoverflow.com/questions/921931/why-is-inserting-into-and-joining-temp-tables-faster/922089#9220891Answer by Alex Martelli for Why is inserting into and joining #temp tables faster??Alex Martelli2009-05-28T17:12:27Z2009-05-28T17:12:27Z<p>Consider using the <code>WITH common_table_expression</code> construct for what you now have as sub-selects or temporary tables, see <a href="http://msdn.microsoft.com/en-us/library/ms175972" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms175972</a>(SQL.90).aspx .</p>
http://stackoverflow.com/questions/921931/why-is-inserting-into-and-joining-temp-tables-faster/922868#9228680Answer by Andomar for Why is inserting into and joining #temp tables faster??Andomar2009-05-28T20:00:20Z2009-05-28T20:00:20Z<blockquote>
<p>This makes not a lot of sense, as it
would seem the cost to insert into a
temp table and then do the join should
be higher by de> This makes not a lot of sense, as it
would seem the cost to insert into a
temp table and then do the join should
be higher by default.fault.</p>
</blockquote>
<p>With temporary tables, you explitly instruct Sql Server which intermediate storage to use. But if you stash everything in a big query, Sql Server will decide for itself. The difference is not really that big; at the end of the day, temporary storage is used, whether you specify it as a temp table or not.</p>
<p>In your case, temporary tables work faster, so why not stick to them?</p>
http://stackoverflow.com/questions/921931/why-is-inserting-into-and-joining-temp-tables-faster/923082#9230820Answer by RBarryYoung for Why is inserting into and joining #temp tables faster??RBarryYoung2009-05-28T20:46:05Z2009-05-28T20:46:05Z<p>There are several possible reasons why using intermediate Temp tables might speed up a query, but the most likely in your case is that the functions which are being called (but are not listed), are probably Multi-statement TVF's and not in-line TVF's. Multi-statement TVF's are opaque to the optimization of their calling queries and thus the optimizer cannot tell if there are any oppurtunities for re-use of data, or other logical/physical operator re-ordering optimizations. Thus, all it can do is to re-execute the TVFs every time that the containing query is supposed to produce another row with the XML columns.</p>
<p>In short, multi-statement TVF's frustrate the optimizer.</p>
<p>The usual solutions, in order of (typical) preference are: </p>
<ol>
<li>Re-write the offending multi-statement TVF to be an in-line TVF</li>
<li>In-line the function code into the calling query, or</li>
<li>Dump the offending TVF's data into a temp table. which is what you've done...</li>
</ol>
http://stackoverflow.com/questions/921931/why-is-inserting-into-and-joining-temp-tables-faster/923158#9231580Answer by Stephanie Abbot for Why is inserting into and joining #temp tables faster??Stephanie Abbot2009-05-28T20:58:29Z2009-05-28T20:58:29Z<p>If creating a temp table with intermediate results is faster, why doesn't the optimizer just do it on its own? Isn't that the job of the optimizer?</p>
<p>All of the other answers so far talk about how to just get to same point you're already at. </p>
http://stackoverflow.com/questions/921931/why-is-inserting-into-and-joining-temp-tables-faster/923181#9231810Answer by ScottE for Why is inserting into and joining #temp tables faster??ScottE2009-05-28T21:03:42Z2009-05-28T21:03:42Z<p>If temp tables turn out to be faster in your particular instance, you should instead use a table variable.</p>
<p>There is a good article here on the differences and performance implications:</p>
<p><a href="http://www.codeproject.com/KB/database/SQP_performance.aspx" rel="nofollow">http://www.codeproject.com/KB/database/SQP_performance.aspx</a></p>