[SalesForce] Dataloader csv file size or record count limit

I want to upload attachments into Case record through Dataloader. To upload attachments I need to define only these 4 columns: ParentId, Name, Description and Body.

  1. What is the limit of csv file size or record count per .csv file.

  2. Can I upload the file which are in network drive (not in local machine) specifying the file path.

Note: I am not using CLI for dataloader and not going for Bulk API option.

Best Answer

First part is already answer with documentation link so I am addressing only 2nd question.

Yes we can refer file stored on network drive using data loader. The only think we need to consider is delay involved for reading file from network drive. If the delay is significant then your migration process will be slow. But technically its possible to do so.

Related Topic