I'm synchronizing databases. They are different types of databases ($$$ issue) so the synchronization is custom. We are having primary key issues. Both databases have a way to have an auto-increment primary key and a way to set an increment value. This lets one databases use 1, 11, 21, etc while another uses 0, 10, 20, etc. There is a problem with this and they stop using the seed values that we set. We would like to manually control the primary key value for each table from the software. What are the best ways to do this?
Some solutions I thought of are:
- Have a primary key web service which provides a primary key for each table in an atomic transaction.
- Have an algorithm which determines the next primary key using a hashing algorithm that does not collide and is generated locally, for example an RSA key token.
- Some time of Redis or Memcached server which keeps the next primary key
- Keep the primary keys in a separate table.