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
BPOORBPOOR 

export attachments using Apex Data Loader

I am trying to export attachments from Salesforce using Apex Data Loader. I am using the below query in Apex Data Loader.
 
Select Id, Name, ParentId, ContentType, BodyLength, Description from Attachment where Parent.Type = 'Account' limit 10

The above query provides only a csv with the above contents.
How do I export the actual attachments? I have done importing attachments into Salesforce by using zip file, but not sure how to export the attachments.

Can someone help?

Also, I don't want to use data export or other tools.
VinayVinay (Salesforce Developers) 
Apex data loader supports only csv format.

You can try using FileExporter appexchange tool.

https://appexchange.salesforce.com/listingDetail?listingId=a0N30000003Iz0jEAC

Hope this helps...

Thanks,