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
hmoh1920hmoh1920 

use data loader

Hi,

 

How data recording  can load the data loader to a custom object.

I have 6000 recording  is loaded, it is possible?

 

 

Thanks.

Best Answer chosen by Admin (Salesforce Developers) 
Navatar_DbSupNavatar_DbSup

Hi,

Yes you can insert the data in custom object through the data loader. You can also insert 6000 records using data loader.

Data loader creates the batch of 200 records when inserting the data.

 

Follow the below steps to insert the data from data loader.

 

  1. Create a inserted data file in CSV format.
  2. Open the data loader.
  3. Select Insert operation and enter org credential (user name, password + security token)
  4. Click on login button
  5. Click on next button
  6. Select your custom object
  7. Select csv file
  8. Click on Create or Edit Map
  9. Click on Auto match Fields of Columns
  10. If no match found drag the fields which you want to map
  11. Click on ok button
  12. Click on next button
  13. Select the directory on your local computer
  14. Click on finish button

 

 Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

 

All Answers

Navatar_DbSupNavatar_DbSup

Hi,

Yes you can insert the data in custom object through the data loader. You can also insert 6000 records using data loader.

Data loader creates the batch of 200 records when inserting the data.

 

Follow the below steps to insert the data from data loader.

 

  1. Create a inserted data file in CSV format.
  2. Open the data loader.
  3. Select Insert operation and enter org credential (user name, password + security token)
  4. Click on login button
  5. Click on next button
  6. Select your custom object
  7. Select csv file
  8. Click on Create or Edit Map
  9. Click on Auto match Fields of Columns
  10. If no match found drag the fields which you want to map
  11. Click on ok button
  12. Click on next button
  13. Select the directory on your local computer
  14. Click on finish button

 

 Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

 

This was selected as the best answer
hmoh1920hmoh1920

Thank's Ankit!