Does Salesforce CLI (SFDX CLI) support big objects.
How can we perform data import on big object from CSV file using SFDX CLI ...
I am trying to run "sf data upsert bulk" command to import the data from csv. Following error is shown while executing above command.
"no create/update access for <abc__b> big objects salesforce"
Can you send your command to further look into it?
Also, I guess No, the sf data upsert bulk command in Salesforce DX CLI is not ideally suited for importing data into big objects. While SFDX supports big objects overall, this specific command has limitations for big object data import due to two main reasons:
Try the below -
Bulk API using sfdx force:data:bulk:load
The
sfdx force:data:bulk:load
command leverages the Salesforce Bulk API, specifically designed for efficient data import and export of large datasets, including big objects. Here's the basic syntax: