Delete temporary table from Tempdb


 IF OBJECT_ID('tempdb..# temp ') IS NOT NULL    
 BEGIN    
   DROP TABLE #temp  
 END      

Comments