https://github.com/agentgill/csv-import
https://github.com/agentgill/csv-import
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/agentgill/csv-import
- Owner: agentgill
- Created: 2020-08-16T15:36:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-21T13:27:07.000Z (over 5 years ago)
- Last Synced: 2025-01-18T13:38:41.287Z (over 1 year ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple CSV Extract Transform Load using Node
A simple solution for parse CSV files and loading into Salesforce using Node.
## Required NPM
- jsforce
- dotenv
- csv-writer
- csvtojson
- fs
- jsforce
## Getting Started
- run `npm install`
## Limitations of Bulk API
Limitations of Salesforce Bulk APIs:
- Batches for data loads can consist of a single CSV, XML, or JSON file that is no larger than 10 MB.
- A batch can contain a maximum of 10,000 records.
- A batch can contain a maximum of 10,000,000 characters for all the data in a batch.
- A field can contain a maximum of 32,000 characters.
- A record can contain a maximum of 5,000 fields.
- A record can contain a maximum of 400,000 characters for all its fields.
- A batch must contain some content or an error occurs.