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
sfdc Beginnersfdc Beginner 

Insert Data

How to Insert data from Organization1 to Organization2 ?
Best Answer chosen by sfdc Beginner
Peter van der Meij | StepOrangePeter van der Meij | StepOrange

Data migration between orgs is always challenging, 

in order for the relations between records to be preserved you could create external id fields on the objects in organisation 2 and load these fields with the Salesforce IDs from organisation 1, this would allow you to retain the lookup and master-detail relations.

As for tooling, I would recommend using Jitterbit if you don't have a lot of experience with Dataloader. Jitterbit is very graphical en easy to understand.  

 

All Answers

Abhishek BansalAbhishek Bansal
Use data lodaer.
Please find help on : https://help.salesforce.com/HTViewHelpDoc?id=data_loader.html

Regards,
Abhishek
Peter van der Meij | StepOrangePeter van der Meij | StepOrange

Data migration between orgs is always challenging, 

in order for the relations between records to be preserved you could create external id fields on the objects in organisation 2 and load these fields with the Salesforce IDs from organisation 1, this would allow you to retain the lookup and master-detail relations.

As for tooling, I would recommend using Jitterbit if you don't have a lot of experience with Dataloader. Jitterbit is very graphical en easy to understand.  

 

This was selected as the best answer
Krishna SambarajuKrishna Sambaraju
Enable Salesforce to Salesforce in the orgs and sync the data between the orgs. Here is a link to the documentation.
https://developer.salesforce.com/page/An_Introduction_to_Salesforce_to_Salesforce
Hope this helps.