How to integrate modules and their data (move from prog B to A)?

0
Situation: Developers A and B building separate modules(programs) in separate databases (SQL server in this case). Each module has its own domain model. B has a lot of 'master tables' filled with data that we don't want to enter again B's stuff has to be moved into A's app Migrating the 'code' is easy: export B's module and import into A's program But how do I get B's data into A's project?
asked
3 answers
1

You could consider the database replication module.

answered
1

Since both developers use the same database (SQL server), you can make a backup of all the "master tables" from developer B and restore them in the database of developer A.

answered
0

Use a multiuser project and host that in a central database. All user always up to date and no sync issues. You can use a SQL server or a PostgreSQL server.

You can copy a local project to a multiuser project.

This is just the model, the data can be done indeed with ordinary database management tools.

answered