I need to trigger updates of a whole bunch of records in a Salesforce database without really updating any values. This is to make a few formulas to recalculate some fields.

Here's what I tried - a schedulable class (say I want it to run every night):

global class acmePortfolioDummyUpdate implements Schedulable
{
    global void execute(SchedulableContext SC) 
    {
        for (Acme_Portfolio__c p : [Select Id From Acme_Portfolio__c]) {
            update(p);
        }
    }
}

update(p) is a DML statement and Salesforce limits the number of them to 150. In my case it's about a few thousands of records.

Also, I need to do this across many different portfolios. SF limits the number of scheduled classes to 10.

Any workaround for this? Thanks

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Try Batch Apex. You can schedule Your batch using schedulable class. Correct me if I'm wrong but aren't formulas recalculated each time You read them?

Edit: Comment don't have enought space. I'm not guarantee this will compile (dont have access to org right now), but try sth like this:

global class batchClass implements Database.batchable<sObject>{ 
    global Database.QueryLocator start(Database.BatchableContext BC){
        return Database.getQueryLocator('Select Id From Acme_Portfolio__c');    
    }   

    global void execute(Database.BatchableContext BC, List<sObject> scope){
        update scope;
    }
    global void finish(Database.BatchableContext BC){
    }   
}

And run this from system log:

Database.executeBatch(new batchClass());
link|improve this answer
2  
Yep formulas do recalculate based on views. I'm guessing he means workflow field updates. – thegogz Jan 11 at 17:24
Thanks. How do I do this with Batch Apex? I've read some documentation on it before but it's still quite mystical to me. – dfo Jan 11 at 18:05
I'm not sure about the recalculation of formulas and workflow field updates. Let's just say that for the sake of it I need to trigger updates of bunch of custom objects. – dfo Jan 11 at 18:10
Check my edit to answer. – Łukasz Skrodzki Jan 11 at 19:44
1  
I've just thrown in the type on the first line too, you need that! – LaceySnr - Matt Lacey Jan 11 at 22:47
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.