SQL Server 2005 Temporary Tables - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T11:33:29Z http://stackoverflow.com/feeds/question/43903 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/43903/sql-server-2005-temporary-tables 1 SQL Server 2005 Temporary Tables Robert Wilkinson 2008-09-04T14:41:09Z 2008-11-17T21:45:27Z <p>In a stored procedure, when is #Temptable created in SQL Server 2005? When creating the query execution plan or when executing the stored procedure?</p> <pre><code>if (@x = 1) begin select 1 as Text into #Temptable end else begin select 2 as Text into #Temptable end </code></pre> http://stackoverflow.com/questions/43903/sql-server-2005-temporary-tables/43910#43910 2 Answer by Chris Miller for SQL Server 2005 Temporary Tables Chris Miller 2008-09-04T14:44:06Z 2008-09-04T14:44:06Z <p>It's created when it's executed and dropped when the session ends.</p> http://stackoverflow.com/questions/43903/sql-server-2005-temporary-tables/43925#43925 1 Answer by Scott A. Lawrence for SQL Server 2005 Temporary Tables Scott A. Lawrence 2008-09-04T14:51:41Z 2008-09-04T14:51:41Z <p>Interesting question.</p> <p>For the type of temporary table you're creating, I think it's when the stored procedure is executed. Tables created with the # prefix are accessible to the SQL Server session they're created in. Once the session ends, they're dropped.</p> <p>This url: <a href="http://www.sql-server-performance.com/tips/query_execution_plan_analysis_p1.aspx" rel="nofollow">http://www.sql-server-performance.com/tips/query_execution_plan_analysis_p1.aspx</a> seems to indicate that temp tables aren't created when query execution plans are created.</p> http://stackoverflow.com/questions/43903/sql-server-2005-temporary-tables/44895#44895 0 Answer by Scott Bennett-McLeish for SQL Server 2005 Temporary Tables Scott Bennett-McLeish 2008-09-04T22:12:29Z 2008-09-04T22:12:29Z <p>Whilst it may be automatically dropped at the end of a session, it is good practice to drop the table yourself when you're done with it.</p> http://stackoverflow.com/questions/43903/sql-server-2005-temporary-tables/77262#77262 1 Answer by Chris Wuestefeld for SQL Server 2005 Temporary Tables Chris Wuestefeld 2008-09-16T21:21:59Z 2008-09-16T21:21:59Z <p>You might also want to consider table variables, whose lifecycle is completely managed for you.</p> <pre><code>DECLARE @MyTable TABLE (MyPK INT IDENTITY, MyName VARCHAR(100)) INSERT INTO @MyTable ( MyName ) VALUES ( 'Icarus' ) INSERT INTO @MyTable ( MyName ) VALUES ( 'Daedalus' ) SELECT * FROM @MyTable </code></pre> <p>I almost always use this approach, but it does have disadvantages. Most notably, you can only use indexes that you can declare within the TABLE() construct, essentially meaning that you're limited to the primary key only -- no using ALTER TABLE.</p>