(转)SQL Server删除全部用户自定义存储过程

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 =
相关文章
相关标签/搜索