You need to sign in to do that
Don't have an account?
prasanth kumar
how to insert new accounts and contacts using apex data loader
could any one help me for my senario, i got a situation where i need to upload new account and contacts using data loader, please help, thanks in advance.
In order to load data through data loader you must follow below steps :
- You should have a CSV file which contains the data which is to be loaded in your org through data loader.
- Master data such as Account should be inserted first than the child data such as Contact.
You can find more help on the link given below :https://help.salesforce.com/apex/HTViewHelpDoc?id=inserting_updating_or_deleting_data.htm&language=en (https://help.salesforce.com/apex/HTViewHelpDoc?id=inserting_updating_or_deleting_data.htm&language=en)
Regards,
Abhishek,
It is impossible to insert data of two obejcts at a single time with data loader.
If you do not have any further queries on it than please close this question by marking it as SOLVED.
That will avoid the confusion to others and will help in saving their time.
Thanks,
Abhishek
Your interviewer was probably looking for you to answer using the Import Wizard.
See:Import My Organization’s Accounts and Contacts (https://help.salesforce.com/apex/HTViewHelpDoc?id=import_my_organizations_accounts_and_contacts.htm)
If there are 10 records in a csv file. And we are trying to insert the data using Data Loader. First 6 records were inserted and suddenly I have stopped the operation. Now again I need to insert from Seventh record as first 6 are already inserted.
Can I acheive in Data Loader using only "Insert"? (Without Upsert, Update and any other format)
Please, any help?