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
sfdc@isha.ax1814sfdc@isha.ax1814 

Dataloader issue

hi,

I have account called"CSB" .I want to export the notes and attachments under Account through Dataloader.Iam not able to do.Can anybody help me with query how to do this?

Regards,
Isha
learn_cloudsflearn_cloudsf
You can use dataloader,io to import and export salesforce attachment.
Muba SFDCMuba SFDC
If you want to export attachement related to account "CSB" then try this
SELECT Id,OwnerId,Parent.name FROM Attachment WHERE Parent.name='CSB'

If you want to export all the attachements related account then try this
SELECT Id,OwnerId,Parent.name FROM Attachment WHERE ParentId in (Select id from account)

 Please mark as resolved if its works
Thanks.
sfdc@isha.ax1814sfdc@isha.ax1814
Hi ,
I tried with the query.Not working for me.I want to export Notes and Attachments related to Particular Account calles CSB through datalaoder.Please help me on this.



Regards,
Isha