show/hide this revision's text 4 deleted 324 characters in body

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:

f1 AS A.ColumnX, A.ColumnY, ... dbo.TableReturningFunc1(@StaticParam1, @StaticParam2) AS A ), f2 AS B.ColumnX, B.ColumnY, ... dbo.TableReturningFunc2(@StaticParam1, @StaticParam2) AS B P.Column1, P.Column2, P.Column3, ... A.ColumnX, A.ColumnY, ... f1 AS A A.Key = P.Key FOR XML AUTO, TYPE ), B.ColumnX, B.ColumnY, ... f2 AS B B.Key = P.Key FOR XML AUTO, TYPE <joined tables here>) AS PFOR XML AUTO,ROOT('ROOT')

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:

  • Generating XML in subqueries
  • 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.

    show/hide this revision's text 3 added 731 characters in body

    Your procedures are being reevaluated for each row in 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.

    Inserting into a temp table is fast because it does not generate redo / rollback.

    Joins are also fast, since having a stable resultset allows possibility to create hash tables and use them in a HASH JOIN.

    You can reuse the procedures without temp tables, using CTE's:

    WITH
       f1 AS
       (
       SELECT
           A.ColumnX,
           A.ColumnY,
           ...
       FROM
          dbo.TableReturningFunc1(@StaticParam1, @StaticParam2) AS A
       ),
       f2 AS
       (
       SELECT
           B.ColumnX,
           B.ColumnY,
           ...
       FROM
          dbo.TableReturningFunc2(@StaticParam1, @StaticParam2) AS B  
       )
    SELECT
     P.Column1,
     P.Column2,
     P.Column3,
     ...
    ,
     (
       SELECT
           A.ColumnX,
           A.ColumnY,
           ...
       FROM
          f1 AS A
       WHERE
          A.Key = P.Key
       FOR XML AUTO, TYPE  
     ),
     (
       SELECT
           B.ColumnX,
           B.ColumnY,
           ...
       FROM
          f2 AS B
       WHERE
          B.Key = P.Key
       FOR XML AUTO, TYPE  
     )
    FROM
    (
       <joined tables here>
    ) AS P
    FOR XML AUTO,ROOT('ROOT')
    

    For this to work, SQL Server needs to materialize the results of CTE.

    If the optimizer won't do it itself, force it do this with using an ORDER BY:

    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  
    
    show/hide this revision's text 2 added 1031 characters in body

    Your procedures are being reevaluated for each row in 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.

    Inserting into a temp table is fast because it does not generate redo / rollback.

    Joins are also fast, since having a stable resultset allows possibility to create hash tables and use them in a HASH JOIN.

    You can reuse the procedures without temp tables, using CTE's:

    WITH
       f1 AS
       (
       SELECT
           A.ColumnX,
           A.ColumnY,
           ...
       FROM
          dbo.TableReturningFunc1(@StaticParam1, @StaticParam2) AS A
       ),
       f2 AS
       (
       SELECT
           B.ColumnX,
           B.ColumnY,
           ...
       FROM
          dbo.TableReturningFunc2(@StaticParam1, @StaticParam2) AS B  
       )
    SELECT
     P.Column1,
     P.Column2,
     P.Column3,
     ...
    ,
     (
       SELECT
           A.ColumnX,
           A.ColumnY,
           ...
       FROM
          f1 AS A
       WHERE
          A.Key = P.Key
       FOR XML AUTO, TYPE  
     ),
     (
       SELECT
           B.ColumnX,
           B.ColumnY,
           ...
       FROM
          f2 AS B
       WHERE
          B.Key = P.Key
       FOR XML AUTO, TYPE  
     )
    FROM
    (
       <joined tables here>
    ) AS P
    FOR XML AUTO,ROOT('ROOT')
    
    show/hide this revision's text 1