function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Pavan kumar 546Pavan kumar 546 

No trigger

how to stop trigger firing process on data loder?
Mani RenusMani Renus

For this you need to deactivate your trigger and for deactivating in production is not possible so first you need to deactivate it on Sandbox then deploy to production later perform data loader operation.

Thanks!!

tural  sadiktural sadik
Because best practices advise you to use single trigger + Handler class you can create a custom setting to store state of your Handler classes and based on that execute Handler code or skip it. Even simpler you can have a static boolean field and to disable all your Handler objects. Thease kind of control points come in handy. This way youl will not have to redeploy your class to production which can be risky because somebody may be working on it and testing some modifications.