Showing posts with label How to drop all stored procedures at once in SQL Server database. Show all posts
Showing posts with label How to drop all stored procedures at once in SQL Server database. Show all posts

Tuesday, November 4, 2014

How to drop all stored procedures at once in SQL Server database?


 declare @procName varchar(500)  
 declare cur cursor   
 for select [name] from sys.objects where type = 'p'  
 open cur  
 fetch next from cur into @procName  
 while @@fetch_status = 0  
 begin  
   exec('drop procedure ' + @procName)  
   fetch next from cur into @procName  
 end  
 close cur  
 deallocate cur