|
| 1 | +# Data-Migration-Tool |
| 2 | + |
| 3 | +*Data-Migration-Tool* is a tool that migrates the data from one Salesforce Org to another Salesforce Org. |
| 4 | + |
| 5 | +Migrating data between orgs can be a daunting ask, this is specially true if you have a complex data model in the form of parent-child, hierarchical, lookups, record types etc relationships. |
| 6 | + |
| 7 | +Doing so manually is error prone, time consuming, frustrating and not an ideal approach. We wrote a Java based tool using Salesforce SOAP to migrate the data from one Salesforce Org to another Salesforce Org. Org to Org Data Loader tool lets you migrate the data from one Salesforce Org to another Salesforce Org. |
| 8 | + |
| 9 | +## Build Org To Org Data Loader |
| 10 | + |
| 11 | +#### Tool has two modules. |
| 12 | + |
| 13 | +* datamigrator-core: This module has tools core classes |
| 14 | +* datamigrator-module: This module has sample examples on how the tool can be used to migrate different kind of related objects from one Salesforce org to another Salesforce org. *datamigrator-module* contains sample JSON object relationship mappings. |
| 15 | + |
| 16 | +#### Build |
| 17 | + git clone [email protected]:forcedotcom/Data-Migration-Tool.git |
| 18 | + mvn clean install |
| 19 | + |
| 20 | +#### Usage: Migrate Products, Pricebooks and PricebookEntries Sample |
| 21 | + |
| 22 | + Enter Source and Target org credentials in *build.properties* |
| 23 | + mvn clean install |
| 24 | + mvn exec:java -Dexec.mainClass="migrator.module.client.MigrateProducts" -pl datamigrator-module |
| 25 | + |
| 26 | +## Running in your IDE |
| 27 | + |
| 28 | +### Overview |
| 29 | + |
| 30 | +You can load the project into your IDE and run the main class to kick-off the migration. We recommend using [Eclipse](http://www.eclipse.org/downloads/). Because this tool is a standard Maven project, you can import it into your IDE using the root `pom.xml` file. In Eclipse, choose Open from the File menu -> Import -> Maven -> and select `Existing Maven Projects` -> select the the root folder. |
| 31 | + |
| 32 | +After opening the project in Eclipse, you will see below two modules: |
| 33 | + |
| 34 | +* datamigrator-core: This module has tools core classes |
| 35 | +* datamigrator-module: Contains the mapping and main java classes to run the migration |
| 36 | + |
| 37 | +Tool comes with many main classes as a way to show different kind of mappings and migrations: |
| 38 | + |
| 39 | +* Main Class: `migrator.module.client.Migrate` |
| 40 | +* Main Class: `migrator.module.client.MigrateProducts` |
| 41 | +* Main Class: `migrator.module.client.MigrateAll` |
| 42 | +* Main Class: `migrator.module.client.MigrateMasterDetail` |
| 43 | + |
| 44 | +and many more... |
| 45 | + |
| 46 | + |
| 47 | +## Running using command line (More Sample Migrations...) |
| 48 | + |
| 49 | +Migrate a simple object's records (no relationships) |
| 50 | + |
| 51 | + Edit the object-mappings/Products.json with your object API name, save |
| 52 | + |
| 53 | + mvn exec:java -Dexec.mainClass="migrator.module.client.Migrate" -pl datamigrator-module |
| 54 | + |
| 55 | +Migrate object's with masterdetail relationships |
| 56 | + |
| 57 | + Edit the object-mappings/Masterdetail_mapping.json with your object API names, save |
| 58 | + |
| 59 | + mvn exec:java -Dexec.mainClass="migrator.module.client.MigrateMasterDetail" -pl datamigrator-module |
| 60 | + |
| 61 | +Migrate object's with hierarchical relationships |
| 62 | + |
| 63 | + Edit the object-mappings/Hierarchical_mapping.json with your object API names, save |
| 64 | + |
| 65 | + mvn exec:java -Dexec.mainClass="migrator.module.client.MigrateHierarchical" -pl datamigrator-module |
| 66 | + |
| 67 | +OR |
| 68 | + |
| 69 | + mvn exec:java -Dexec.mainClass="migrator.module.client.MigrateAccountsHierarchical" -pl datamigrator-module |
| 70 | + |
| 71 | + |
| 72 | +Migrate multiple object's in a single run |
| 73 | + |
| 74 | + Edit the object-mappings as referenced in MigrateAll.java with your object API names, save |
| 75 | + |
| 76 | + mvn exec:java -Dexec.mainClass="migrator.module.client.MigrateAll" -pl |
| 77 | + datamigrator-module |
| 78 | + |
| 79 | +Migrate Accounts with Opportunities and Assets. Make sure you edit the JSON with your external ids from Accounts with Opportunities and Assets objects. |
| 80 | + |
| 81 | + Edit the object-mappings/AccountwithAssetsAndOppties_hierarchical.json with your object's external Id API name, save |
| 82 | + |
| 83 | + mvn exec:java -Dexec.mainClass="migrator.module.client.MigrateAccountsHierarchical" pl datamigrator-module |
| 84 | + |
| 85 | + |
| 86 | +## Usage (Sample Deletions from Target Org) |
| 87 | + |
| 88 | +Delete a simple object's records |
| 89 | + |
| 90 | + Edit the object-mappings/Products.json with your object API name, save |
| 91 | + |
| 92 | + mvn exec:java -Dexec.mainClass="migrator.module.client.Delete" -pl datamigrator-module |
| 93 | + |
| 94 | +Delete multiple object's records in a single run |
| 95 | + |
| 96 | + Edit the object-mappings as referenced in DeleteAll.java with your object API names, save |
| 97 | + |
| 98 | + mvn exec:java -Dexec.mainClass="migrator.module.client.DeleteAll" -pl datamigrator-module |
| 99 | + |
| 100 | + |
| 101 | +## Usage (Compare objects metadata in source and target org) |
| 102 | + |
| 103 | +Compare objects Metadata in source and target org |
| 104 | + |
| 105 | + mvn exec:java -Dexec.mainClass="migrator.module.client.MetadataCompareExample" object1,object2 -pl datamigrator-module |
| 106 | + |
| 107 | +## Usage (Given a set of objects, create a JSON mapping structure) |
| 108 | + |
| 109 | +Given a set of objects, create a JSON mapping structure |
| 110 | + |
| 111 | + mvn exec:java -Dexec.mainClass="migrator.module.client.GenerateMappingExample" object1,object2 -pl datamigrator-module |
| 112 | + |
| 113 | +## Usage (Counts the number of records in source and target org) |
| 114 | + |
| 115 | +Once migration has completed, you may want to compare the number of records in source and target org |
| 116 | + |
| 117 | + mvn exec:java -Dexec.mainClass="migrator.module.client.ValidateExample" object1,object2 -pl datamigrator-module |
| 118 | + |
| 119 | + |
| 120 | +# More Advanced Object Relationship JSON Mappings, Resources |
| 121 | + |
| 122 | +For more information, see the [wiki](https://github.com/forcedotcom/Data-Migration-Tool/wiki) |
| 123 | + |
| 124 | +## Authors |
| 125 | + |
| 126 | +Anoop Singh by [Anoop Singh ]( mailto:[email protected], [email protected]) |
0 commit comments