Just learned from Pinal Dave's blog about disabling all triggers on database. You can use the below query to disable all triggers.
DISABLE TRIGGER ALL ON DATABASE
To disable triggers on all servers
DISABLE TRIGGER ALL ON ALL SERVER
Published under: SQL Server Tips · · · ·
you can also enable all triggers ENABLE TRIGGER ALL ON DATABASE
ENABLETRIGGER ALL ON ALL SERVER
Nice one! Thanks for sharing!
This command will not disable any of the normal triggers (defined on tables). It will only disable the DDL triggers defined on the database scope.