• Lowell (3/14/2011)


    for reference though, the format is not too difficult: it's INTO #Tablename just before the first from

    SELECT

    ColumnList

    INTO #TMP

    FROM ATable

    JOIN OtherTables ON ...

    UNION

    SELECT columnList

    FromBTable

    Keep in mind, doing it this way may cause a lock on tempdb system tables for the whole duration of the query.

    That's why I suggested to first create the temp table.

    Tempdb is used by everyone that uses your instance !

    (order by / group by / temp tb/ tb var / query set materialisation, ....)

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me