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
Sowjanya Hegde 13Sowjanya Hegde 13 

How to extract records from big object to custom object ?

I want to fetch big object data based on the filter 'createddate' = today() and insert these records into custom object. This has to be automated, so that everyday the automation has to run and records from big object should be inserted to custom  object. 
which async apex would be best to implement this. Please suggest!
AnudeepAnudeep (Salesforce Developers) 
Hi Sowjanya, 

You can use the asynchronous Apex Queueable interface to insert records into a custom object. Please see below link to learn more 

Big Objects Queueable Example

Let me know if this helps, if it does, please mark this answer as best so that others facing the same issue will find this information useful. Thank you