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
tangotango 

Data Loader logging sucess/error's


Somehow I cant get the syntax to NOT log all success records. I think I have tried every possibility.. caps, no caps, omit line... etc..

Loging a few hundred thousand lines not only takes up a lot of space it slows down the process.


Code:
 <!-- 2008 Load  -->
 <bean id="Get2008"
          class="com.salesforce.lexiloader.process.ProcessRunner"
          singleton="true">
      <description></description>
        <property name="name" value="Get2008"/>
        <property name="configOverrideMap">
            <map>
                <entry key="sfdc.debugMessages" value="false"/>
                <entry key="sfdc.debugMessagesFile" value="status\SoapTrace.log"/>
                <entry key="sfdc.endpoint" value="https://www.salesforce.com"/>
                <entry key="sfdc.username" value="xxxxxxxxxxxxxxxxxxx"/>
                <entry key="sfdc.password" value="xxxxxxxxxxxxxxxxxxxxxx"/>
    <entry key="sfdc.entity" value="XXData__c"/>
                <entry key="process.operation" value="upsert"/>
    <entry key="sfdc.externalIdField" value="XXXX_Id__c"/> 
    <entry key="process.outputError" value="status\errors.csv" />
    <entry key="process.enableExtractErrorOutput" value="true" /> 
    <entry key="process.enableExtractSuccessOutput" value="FALSE" /> 
          <entry key="process.mappingFile" value="Conf\DataMap.sdl"/>
                <entry key="dataAccess.type" value="databaseRead"/>
                <entry key="dataAccess.name" value="RPT_2008"/>
            </map>
        </property>
    </bean>

 


mmovidammovida
Hello. Have you tried this? 
 
<entry key="process.enableExtractStatusOutput" value="false" />
tangotango
Tried that ...  no matter the conf.xml file options for sucess it seems to do the same thing.

it always logs the sucess.  It  will log sucess with time stamp as well but not the errors..

I CAN change the error output  directory settings and the error file name but not the sucess output file name or turn off the sucess output.





Message Edited by tango on 10-15-2008 10:26 AM