vote up 2 vote down star

Which are more performant, CTE or temporary tables?

flag

22% accept rate

3 Answers

vote up 1 vote down

Temp tables are always on disk - so as long as your CTE can be held in memory, it would most likely be faster (like a table variable, too).

But then again, if the data load of your CTE (or temp table variable) gets too big, it'll be stored on disk, too, so there's no big benefit.

In general, I prefer a CTE over a temp table since it's gone after I used it. I don't need to think about dropping it explicitly or anything.

So, no clear answer in the end, but personally, I would prefer CTE over temp tables.

link|flag
vote up 1 vote down

I'd say they are different concepts but not too different to say "chalk and cheese2.

A temp table is good for re-use or to perform multiple processing passes on a set of data.

A CTE can be used either to recurse or to simply improved readability.

A CTE (like a view or inline table valued function) can also be treated like a macro to be expanded in the main query. A temp table is a another table.

I have stored procs where I use both...

link|flag
vote up 0 vote down

This is a really open ended question, and it all depends on how its being used and the type of temp table (Table variable or traditional table).

A traditional temp table stores the data in the temp DB, which does slow down the temp tables; however table variables do not.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.