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
shekar B Nshekar B N 

i need sample java program to insert record to big object

i have some records , i need to insert that record to big object using java progrm ,plz give replays  
Khan AnasKhan Anas (Salesforce Developers) 
Hi Shekar,

Greetings to you!

Please refer to the below link which might help you further with the above requirement.

http://kona.guru/how-to-create-and-insert-data-into-big-objects/

I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks and Regards,
Khan Anas
Raj VakatiRaj Vakati
Use this code
 
sObject[] customerBO = new sObject();
        customerBO.setType("Customer_Interaction__b");
        customerBO.setField("Account__c","001d000000Ky3xIAB");
        customerBO.setField("Game_Platform__c","iOS");
        customerBO.setField("Play_Date__c","2017-11-28T19:13:36.000z");
    SaveResult[] sr = connection.create(customerBO);

https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_calls_deletebyexample.htm?search_text=big%20object