How can I remove all triggers from my tables. I have many tables, but about 20 of them have triggers and I want to remove them all.
run this:
SELECT 'DROP TRIGGER ' + name
FROM sysobjects
WHERE type = 'tr'
Then copy the results and run that in the query analyzer. That'll get rid of all the triggers.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With