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

Many updates in a day
Hello,
What is the limit of updates per day.
We are building a huge application which will involve many applicants whose details will be updated in the system individually via the web appln page etc.
What is the limit on calling update function per day., rather how many times can we call update() function in a day, say 10000, 50000 etc
Kind regards,
Ruhi
What is the limit of updates per day.
We are building a huge application which will involve many applicants whose details will be updated in the system individually via the web appln page etc.
What is the limit on calling update function per day., rather how many times can we call update() function in a day, say 10000, 50000 etc
Kind regards,
Ruhi
In a transaction you cannot have more than 150 DML statements, (that is more than 150 update statement)
In a transaction you cannot update more than 10,000 records at a time. (* you can use batch apex if you want to update more)
Thank you,
There is no limit on DML Call Perday, It's everything applicable per transaction only.
You can do Insert or update 10000 Records(Per Transaction)
For More details about the Governor Limits,
https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_gov_limits.htm