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
NeetMunjaniNeetMunjani 

value of key extractionSOQL in command line apex data loader

I am using command line apex data loader. I want to extract those accounts which have last_ax_date field value greater then date specified in the somewhere on data loader machine.

 

<bean id="ExtractAXAccounts"
class="com.salesforce.dataloader.process.ProcessRunner"
singleton="false">
<entry key="process.operation" value="extract"/>
<entry key="dataAccess.type" value="csvWrite"/>
<entry key="sfdc.extractionSOQL" value="select Id, Name, Last_AX_Date from Account where Last_AX_Date > 'date store in somewhere in the system' "/>
</bean>

 

so where I have to specify date and how I can use it for "sfdc.extractionSOQL" value.

Thanks in advance,
Nitin