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
Gaurav RajGaurav Raj 

Data Loader from Command Line - not extracting

Hi, 

i am using the following to extract data

 

this is my process-config.xml

<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">

<beans>

<bean id="Account"

class="com.salesforce.dataloader.process.ProcessRunner"

singleton="false">

<description>Export Account Data</description>

<property name="name" value="Account"/>

<property name="configOverrideMap">

<map>

<entry key="sfdc.enableLastRunOutput" value="false"/>

<entry key="sfdc.entity" value="Account"/>

<entry key="process.operation" value="extract"/>

<entry key="sfdc.extractionRequestSize" value="500"/>

<entry key="sfdc.extractionSOQL" value="SELECT Id FROM Account"/>

<entry key="dataAccess.name" value="D:\Data Load"/>

<entry key="dataAccess.type" value="csvWrite"/>

<entry key="dataAccess.writeUTF8" value="true" />

</map>

</property>

</bean>

</beans>

 

 

its not working and throws error.