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
Miya PMiya P 

Is there a way to monitor bulk data load jobs for last 6 months/ an year in salesforce.

I only see the IN PROGRESS jobs and Completed Last 7 Days jobs, but Is there a way to troubleshoot jobs which are before few months ?
 
NagendraNagendra (Salesforce Developers) 
Hi Soumya,

Hope you are doing good.

We don't have a provision to monitor the bulk jobs if they are older than a week.

May I suggest you please refer to the below links which confirms the same. Also, find the screenshot below for the same.
User-added image
Hope this helps.

Kindly mark this as solved if the reply was helpful so that it gets removed from the unanswered queue which results in helping others who are encountering a similar issue.

Thanks,
Nagendra
Raj VakatiRaj Vakati

You can check for errors by querying the BackgroundOperationResult object. For example, this query returns details of all errors in a data file imported using Bulk API, whose batch ID is 751xx000000006OAAQ.

 
SELECT CreatedbyId, CreatedDate, Id, Message, MessageType, ParentId FROM BackgroundOperationResult WHERE ParentId = “751xx000000006OAAQ”