December 27, 2011

Delete temporary table from Tempdb


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

No comments:

Post a Comment