Joins are also fast, since having a stable resultset allows possibility to create hash tables and use them in a HASH JOIN.temporary index with an Eager Spool or a Worktable
You can reuse the procedures without temp tables, using CTE's:
For s, but for this to workbe efficient, SQL Server needs to materialize the results of CTE.
If the optimizer won't do it itself,
You may try to force it do this with using an ORDER BY inside a subquery:
, which may result in Eager Spool generated by the optimizer.
However, this is far from being guaranteed.
The guaranteed way is to add an OPTION (USE PLAN) to your query and wrap the correspondind CTE into the Spool clause.
See this entry in my blog on how to do that:
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.
Using the temp tables will be much easier, though.
