You need to sign in to do that
Don't have an account?

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
As always thanks for your support.
TRF
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
Do you have a solution for that also, how do you manage that ?
Best regards
TRF