Import CSV files with delimiters using Data Loader
The document instructs delimiters usage in CSV files and ensure proper data interpretation by incorporating quotes when necessary.
Data Loader allows the import of data in CSV-UTF 8 format. The CSV files use delimiters for separating the values and the fields.
Data Loader supports the following delimiters:
- Comma (,)
- Tab (\t)
- Pipe (|)
- Semicolon (;)
- Dot (.)
- Tilde (~)
- Colon (:)
If a CSV value contains any of the supported delimiters, enclose the value in double quotes (" ") to prevent data misinterpretation.
For example, if a CSV file uses comma (,) as the delimiter:
FirstName,LastName,Address
Joe,Dane,USA
Here , is used as a separator and also as a delimiter. To interpret each value as a separate field format the values as follows:
"Joe","Dane","USA"