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
roni shoreroni shore 

Hi, Is there a way to query Bulk data Jobs for more than a week, with objects and total records processed??

NagendraNagendra (Salesforce Developers) 
Hi Rohan,

I don't have any orgs with bulk jobs to look at off hand to figure out exactly which fields are the ones displayed, but this should help you get started.
 
SELECT CompletedDate, Id, JobItemsProcessed, Status FROM AsyncApexJob
WHERE CompletedDate = LAST_N_DAYS:7

Please refer to the below articles for  more information on querying bulk data jobs.
https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/asynch_api_code_curl_walkthrough.htm
https://help.salesforce.com/apex/HTViewHelpDoc?id=monitoring_async_api_jobs_details.htm
https://help.salesforce.com/apex/HTViewHelpDoc?id=monitoring_async_api_jobs.htm&language=en_US
http://stackoverflow.com/questions/34274097/salesforce-monitor-bulk-data-load-jobs-for-processing-jobs-progress-is-not-show

Please mark it as solved if it helps.

Best Regards,
Nagendra.P