本文介绍了数据库中已经有一个名为'#Temp'的对象,与Temp表有关的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 限时删除!! 我面临与临时桌有关的问题... 我创建了Storead程序。 以下是我在SP中的情景。 IF OBJECT_ID (' tempdb ..#temp') IS NOT NULL DROP TABLE #temp; IF OBJECT_ID (' tempdb ..#temp1') IS NOT NULL DROP TABLE #temp1; IF OBJECT_ID (' tempdb ..#comman') IS NOT NULL DROP TABLE #comman; 如果 type = ' A' BEGIN 选择 abc,d,e,f 进入 #temp 来自 mst_temp END ELSE BEGIN 选择 abc,d,temp1 进入#temp1 来自 mst_temp END if type = ' A' 选择 * 进入 #comman 来自 #temp else 选择 * 进入 #comman 来自#temp1 - - some在#comman表上操作 执行存储过程后我收到错误 ' 已有一个名为' #comman ' 在数据库' 即使我有Drop临时表 请告诉我哪里错了!!! 解决方案 Hi,I am facing problem related to Temporary table...I have create Storead procedure.below is my scenario in SP.IF OBJECT_ID('tempdb..#temp' ) IS NOT NULL DROP TABLE #temp;IF OBJECT_ID('tempdb..#temp1') IS NOT NULL DROP TABLE #temp1;IF OBJECT_ID('tempdb..#comman') IS NOT NULL DROP TABLE #comman ; If type ='A' BEGIN select abc,d,e,f into #temp from mst_temp END ELSE BEGIN select abc,d,temp1 into #temp1 from mst_temp END if type='A' select * into #comman from #temp else select * into #comman from #temp1---- some operation on #comman tableAfter Executing Stored prcedure I got error'There is already an object named '#comman ' in the database' Even though I have Drop temporary tablePlease tell me where i am wrong !!! 解决方案 这篇关于数据库中已经有一个名为'#Temp'的对象,与Temp表有关的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 1403页,肝出来的..
09-07 19:11