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
beta1beta.ax97beta1beta.ax97 

Dataloader config file

One small question.... If I need to schedule more than one operation (ex: one inserts, one updates and one deletes), do I need to write three differentes config files and put them in separated places ? (could it be in the same place, with differentes names?) or do I write all the operation secuencially in the same file ?

As always thanks for your support.

TRF
JesipJesip
I had to do this same thing...
The way I handled it was to create a separate config file for each command and then I created a .bat file to rename the config files and execute them as I went.

Example:
ren Command1.properties config.properties
java -jar sforcedataloader.jar username= password=
ren config.properties Command1.properties

ren Command2.properties config.properties
java -jar sforcedataloader.jar username= password=
ren config.properties Command2.properties
beta1beta.ax97beta1beta.ax97
Uffffss, jesip... I was expecting a completly different answer but your solution is awesome. Another question, in this momento i am putting the password into the conffig file, and i noticed that every time i runned an "instance" of the batch, the password dissapeared, and i needed to edit the file again an d put the password each time..

Do you have a solution for that also, how do you manage that ?

Best regards
TRF