In my server code, I create a temp table (named #temp), insert some data, and then delete the temporary table. If more than one user of this section of the code will work at the same time (creating a temporary table), will sql server 2008 create a temporary table for each user or create 1 global temp table? If its one table, I assume that I will have problems when the same table will be created several times?
Eminem
source share