klewis10367
MIS
Is there a stored procedure or script that will drop all of my triggers on a database?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select 'DROP TRIGGER '+name
from sysobjects
WHERE xtype = 'TR'