i have two databases with the same schema and a lot of similar data that i want to merge into a new one. My question is: what is the best way to do it? Obviously, it could have a problem with the PK and storing the information twice.
I have thought in first exporting one database into the new one, then, matching the rows in one database with the new one without using the PK. This has a problem, if the user changed one data in the past, i will store the information twice. Big issue i think.
