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
buzzbuzz 

Apex data loader extraction limit

I need to do a daily extract of approx 100000 records, but the limit on 'sfdc.extractionRequestSize'  is 2000 records, is there a way to over ride this limit to extract all recordsfrom the command line without writing 50 serial xml process beans?

buzzbuzz

It looks like I may be able to increase the limit to 10000 with the bulk API, has anyone tried this?   Is there a way to make the data loader CLI behave like the GUI and just output everything that matches my soql?

SuperfellSuperfell

the parameter you refer to is the batch size, it affects how many rows are returned in a single API call, it doesn't not affect how many rows your extract can geneate. you should have no problem running a query returning 100k rows.