How Export/Import Data from Entities

0
Hello,   How can I export data from some entities from one application to import in another similar application? (the applications are the same, but they are different servers)
asked
1 answers
1

There are a few ways to accomplish this:

  • if you want to replicate the entire database, take a database backup from the source and restore it to the target database
  • you could use one of the CSV modules in the app store, like this one https://marketplace.mendix.com/link/component/1911
  • you could Export to Excel from a Datagrid in the source application and then install the Excel Import module (https://marketplace.mendix.com/link/component/72) from the app store and use that to import the Excel file into the target application

Those are the quickest ways to do this.  If you have large volumes of data to move, there is a CSV module in the app store suitable for large volumes (https://marketplace.mendix.com/link/component/108605)

Hope that helps.

answered