In various interview questions asked below questions related to Disable Trigger.
1] How to disable the triggers for database?
2] How to disable all the triggers for all servers?
1]DISABLE TRIGGER table_name ON database_name;
GO
2]DISABLE TRIGGER ALL ON ALL SERVER;
GO