I have created one stored procedure with 7 temporary tables and each temp table is dropped at the end of their own work.

I am calling the SP from one web service and same web service we are used for different instance.

I have dropped every temp table forcefully but when SP executes it will not delete any of the temporary table which are located in "tempdb/Temporary Table". And, when I open new instance of my application and try to execute same SP it will modify same temp tables.

This creates problem for me. it will lock the tables when SP execute simultaneously it will lock the table and my sp is not able to produce result and throw exception.

So I want to drop my temporary tables at the end of my operation. please help.

link|improve this question

4  
show some code please – Daniel Hilgarth Jul 8 '11 at 11:39
5  
Are you creating the tables in TempDB directly or are you using create table #TableName... or perhaps create table ##TableName...? – Mikael Eriksson Jul 8 '11 at 11:46
Maybe something in a try catch block is preventing the drop statements from executing? Need code. – Jeff O Jul 8 '11 at 11:47
Simple solution make your temp table table variables. It sounds like you only want them active for a single batch anyway. – JStead Jul 8 '11 at 11:51
We have created temp tables by using "select * into #temp from mytablename". – Brijesh Patel Jul 8 '11 at 11:52
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

I can't tell you why this is happening, but I have dealt with it before as well. Try cleaning up your tables at the beginning or end of the SP or using table variables.

IF object_id('tempdb..#TableName') IS NOT NULL DROP TABLE #TableName
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.