数据库中查询已有的触发器:
select * from sysobjects where xtype='TR'
查看数据库中某个触发器:
exec sp_helptext '触发器名'
删除某个触发器:
drop trigger trigger_name