Are temporary tables thread-safe?

前端 未结 9 548
清酒与你
清酒与你 2021-02-05 00:10

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

9条回答
  •  一生所求
    2021-02-05 00:39

    unless you use two pound signs ##temp the temp table will be local and only exists for that local connection to the user

提交回复
热议问题