Some people have found a need to disable a trigger for a short period of time while they did work on the system that was not typical for their application. Rather than delete the trigger and re-create it later, here is some code that you can run in one statement (and inside a transaction, if required):
ALTER TABLE tablename DISABLE TRIGGER ALL -- do work here ALTER TABLE tablename ENABLE TRIGGER ALL |