You need to sign in to do that
Don't have an account?

Execute Bulk Trigger
Hi,
We have one bulkified trigger on custom object.
i want to use that same trigger to update all the records in the system, how can i execute the trigger which will update 1000 records in the system.
Thanks.
We have one bulkified trigger on custom object.
i want to use that same trigger to update all the records in the system, how can i execute the trigger which will update 1000 records in the system.
Thanks.
Export the data in csv and reload the same data again to meet the trigger execution conditions and set batch size as 1000 while loading data
Thanks
That will solve your problem.
But Before doing that you have to thing what condition you use to invoke the trigger.
Make sure running the batch class not invoke your trigger.
Its best if you deactivate your trigger before runnung your batch class.
If you have any more query feel free to ask i will try to help you as much i can.