Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
You forgot the most important information: which DBMS are you using? PostgreSQL? Oracle? – a_horse_with_no_name Jan 28 at 17:36

closed as not constructive by Wooble, John Saunders, E.J. Brennan, Linger, Radu Murzea Jan 28 at 17:46

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Your question is a bit vague on what you are looking for but:

  1. If you need to do anything remotely complicated, create a conversion project to allow you to add logic to correct your edge cases as they arise.
  2. If your concern is finding slightly altered records I would suggest carrying out your merge using the simplest rules first, then searching and scoring records based on how likely they are to be a match and working your way through this list until they become false positives to a high enough of a case that it is not worth your effort to continue searching them out (this point depends on your projects tolerance for data issues)

This said, it sounds like the data has the same PK's in both databases from the start? If so create a conversion project in code and manage matching the PK's one at a time:

  1. Select from DB1.
  2. Check if exists in DB2: If it doesn't write it to DB3, if it does decide which one to keep, write it to DB3.
  3. Select all records from DB2 not already in DB3 and write them to DB3
share|improve this answer
In some tables the PK could be different, so i guess that i will have to store twice the data. Thanks – grouser Jan 28 at 17:14
So a combination of the two approaches. In either case, create a conversion project and do this in code. Life will be better as you have to tweak the process. – Matthew Jan 28 at 17:18

Not the answer you're looking for? Browse other questions tagged or ask your own question.