Bulk update records to an org from a CSV file. Uses Bulk API 2.0.
Description for data update bulk
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. 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, 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.
Override the api version used for api requests made by this command
‑‑column‑delimiter
N/A
Type: Value Valid Values:BACKQUOTE, CARET, COMMA, PIPE, SEMICOLON, TAB
Column delimiter used in the CSV file.
‑‑file
‑f
Type: Value Required
CSV file that contains the Salesforce object records you want to update.
‑‑flags‑dir
N/A
Type: Value
Import flag values from a directory.
‑‑json
N/A
Type: Boolean
Format output as json.
‑‑line‑ending
N/A
Type: Value Valid Values:CRLF, LF
Line ending used in the CSV file. Default value on Windows is CRLF; on macOS and Linux it’s LF.
‑‑sobject
‑s
Type: Value Required
API name of the Salesforce object, either standard or custom, which you are updating.
‑‑target‑org
‑o
Type: Value Required
Username or alias of the target org. Not required if the target-org configuration variable is already set.
‑‑wait
‑w
Type: Value
Time to wait for the command to finish, in minutes.
Examples for data update bulk
Update Account records from a CSV-formatted file into an org with alias “my-scratch”; if the update doesn’t complete in 10 minutes, the command ends and displays a job ID: