The differences between tempdb and any other database are minimal, especially when it comes to limits.
If you can save it in the user table, you can also save it in the temporary table. It should not fit into RAM, since tempdb is stored on disk just like any other database (only with more aggressive caching and less logging).
Source: http://msdn.microsoft.com/en-us/library/ms190768.aspx
source
share