Is it possible to disable a trigger for a batch of commands and then enable it when the batch is done?
I\'m sure I could drop the trigger and re-add it but I was won
ALTER TABLE table_name DISABLE TRIGGER TRIGGER_NAME -- Here your SQL query ALTER TABLE table_name ENABLE TRIGGER TRIGGER_NAME