Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion messages/data.export.resume.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# summary

Resume a bulk export job that you previously started.
Resume a bulk export job that you previously started. Uses Bulk API 2.0.

# description

Expand Down
4 changes: 2 additions & 2 deletions messages/data.update.bulk.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Bulk update records to an org from a CSV file. Uses Bulk API 2.0.

# description

You can use this command to update millions of records into the object from a file in comma-separated values (CSV) format.
You can use this command to update millions of Salesforce object records based on a file in comma-separated values (CSV) format.

All the records in the CSV file must be for the same Salesforce object. Specify the object with the `--sobject` flag.
All the records in the CSV file must be for the same Salesforce object. Specify the object with the `--sobject` flag. The first column of every line in the CSV file must be an ID of the record you want to update. The CSV file can contain only existing records; if a record in the file doesn't currently exist in the Salesforce object, the command fails. Consider using "sf data upsert bulk" if you also want to insert new records.

Bulk updates can take a while, depending on how many records are in the CSV file. If the command times out, or you specified the --async flag, the command displays the job ID. To see the status and get the results of the job, run "sf data update resume" and pass the job ID to the --job-id flag.

Expand Down
4 changes: 2 additions & 2 deletions messages/data.update.resume.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ When the original "sf data update bulk" command either times out or is run with

# examples

- Resume a bulk update job to your default org using an ID:
- Resume a bulk update job of your default org using a job ID:

<%= config.bin %> <%= command.id %> --job-id 750xx000000005sAAA

- Resume the most recently run bulk update job for an org with alias my-scratch:
- Resume the most recently run bulk update job for an org with alias "my-scratch":

<%= config.bin %> <%= command.id %> --use-most-recent --target-org my-scratch

Expand Down