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
cmarkcmark 

Data Loader (batch mode) not generating success/error logs?

Hello.  I'm using the Data Loader (v14) in batch mode - extracting data from SFDC and inserting into a DB.  Works fine, but it's not generating success/error logs.  I've tried each of the following elements in my process-conf.xml file - what am I missing?  (opening and closing brackets are removed below so there's no issue with display...)

entry key="process.statusOutputDirectory" value="C:\proj\client\data\testDL"/
entry key="process.outputError" value="C:\proj\client\data\testDL\er.csv"/

Thanks for your time.
chris
rpaskerpaske

I have just solved the same problem.  You need to have another entry key.

 

entry key = "process.enableExtractStatusOutput" value = "true"

 

 

The latest user guide I have found has the key listed as "process.enableExtractSuccessOutput", but if you use the standard interface and look at config.properties, you will see the correct name.