在我的存储过程中,我试图将记录插入到临时表中
在我的存储过程中,我试图将记录插入到临时表中
--Temporary table
create table #CR_TMP
(
ct_co_id int NULL
, ct_nbr int NULL
, ctrct_srvc_type char(4) NULL
, start_date datetime NULL
, end_date datetime NULL
)
print 'Before insert'
Insert into #CR_TMP
select distinct col1,col2,......
from tableName
where conditions
print 'After insert'
select '#CR_TMP' as #CR_TMP, * from #CR_TMP
print 'here 1'
我运行了选择查询,它提供了大约 583 行。但是当我执行上述程序时。我认为它卡在插入过程中。我确实得到了“插入后”的结果,但没有得到打印“here 1”的结果。我让这个程序执行了 2 个小时,它被卡在了同一个地方。这里有任何指示吗?
我运行了选择查询,它提供了大约 583 行。但是当我执行上述程序时。我认为它卡在插入过程中。我确实得到了“插入后”的结果,但没有得到打印“here 1”的结果。我让这个程序执行了 2 个小时,它被卡在了同一个地方。这里有任何指示吗?