I am using mysql and there are bulk inserts that goes on to my table.
My doubt is if I create a trigger specifying after insert
, then the trigger will get activated for every insert after
, which I do not want to happen.
Is there any way to activate a trigger after all the bulk inserts are completed?
Any advice?
Thanks.