SQL中删除某数据库所有trigger及sp

系统 1688 0
原文: SQL中删除某数据库所有trigger及sp

SQL 中删除某数据库所有trigger及sp

 

编写人: CC 阿爸

 

2014-6-14

 

在日常 SQL 数据库的操作中,如何快速的删除所有 trigger sp

以下有三种方式可快速处理。

 

 

-- 第一种

-- 事务的处理方法

Begin Transaction

Begin try

declare @SQL varchar ( max )

set @SQL = ''

select @SQL = @SQL + name + ',' from sysobjects where xtype = 'TR' and name <> 'DropDatabase'

If ISNULL ( @SQL , '' )!= ''

Begin

set @SQL = 'Drop Trigger ' +LEFT( @SQL , len ( @SQL )- 1 )

select   @SQL as aa

--exec(@SQL)

end

commit Transaction

End Try

Begin Catch

rollback tran

End Catch

 

 

-- 第二种方法

-- 采用光标的方式

 

--DECLARE cursorname cursor for select 'drop PROCEDURE  '+name from sys.objects where name like 'xx%' and xtype = 'P' -- 删除对应的存储过程

DECLARE cursorname cursor for select 'drop Trigger' + name from sys . objects where name like '%' and type = 'TR' -- 删除对应的触发器

open cursorname

declare @curname sysname

fetch next from cursorname into @curname

while ( @@fetch_status = 0 )

  begin

  --exec(@curname)

  select @curname as aa

fetch next from cursorname into @curname

end

close cursorname

deallocate cursorname

 

-- 第三种方法

-- 简易办法,查询出来后,再在数据库中执行

select 'drop Trigger ' + name from sys . objects where name like '%' and type = 'TR'

select 'drop PROCEDURE ' + name from sys . objects where name like '%' and type = 'P'

SQL中删除某数据库所有trigger及sp


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论