show/hide this revision's text 3 corrected spelling

In Sql Server 2005, we can create temp tables on one of two ways:

declare @tmp table (Col1 int, Col2 int);

or

create table #tmp (Col1 int, Col2 int);

What are the differences between the two? I have read conflicting opinions on whether @tmp still uses tempdb, or if everything happens in memory.

In which scenarios does one out-perform the other?

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

What's the difference between a temp table and table variable in MSSQL?

In Sql Server 2005, we can create temp tables on of two ways:

declare @tmp table (Col1 int, Col2 int);

or

create table #tmp (Col1 int, Col2 int);

What are the differences between the two? I have read conflicting opinions on whether @tmp still uses tempdb, or if everything happens in memory.

In which scenarios does one out-perform the other?