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
neblincneblinc 

Custom object - Maximum records

I have a custom object in which inserts and deletes happen often, are there some limits I'm going to hit - like number of rows inserted throughout lifetime of the ojbect, etc... The object does not have auto number and I'm using scheduled nightly apex batch job to perform these tasks. And there are no triggers on it.

 

 

thanks,

Chandra. 

hisrinuhisrinu

I think you can insert or delete any no.of records, but only the problem is if you have any lookups then you need to take care of them

 

Suppose if custom object contains lookup to account and for one account is having more than 10K records then you might be get into the problems. Take care all the sceanrios.