看看下面的查询。
select *
into TempTable
from MainTable
select * from TempTable
WAITFOR DELAY '00:00:10'
drop table TempTable
执行此查询后,我打开其他窗口并执行查询:
select *
into TempTable
from MainTable
select * from TempTable
drop table TempTable
我收到以下错误:
数据库中已经有一个名为“TempBucket”的对象。
假设它是存储过程的一部分,需要很长时间才能完成。如果再次调用此存储过程,则会发生此错误。如何修复此错误?