I\'m using SQL Server 2000, and many of the stored procedures it use temp tables extensively. The database has a lot of traffic, and I\'m concerned about the thread-safety of cr
Temp tables are tied to the session, so if different users run your procedure simultaneously there's no conflict...