I have a problem with a MySQL database for development and production. I want to combine the two databases, but since content authors added entries to the production environment, there are about 20 overlapping entries with the same primary key.
I use Navicat to synchronize data, but it just updates the records on the production server using the ones on my development server. Primary keys mean nothing, and I would like to make these entries new primary keys.
Is this possible through Navicat? If not, would it be a bad idea to manually go into db and change the primary keys? Or does this affect the ability to automatically grow MySQL?
Thanks.
source share