I have one table spread across two servers running MySql 4. I need to merge these into one server for our test environment.
These tables literally have millions of r
You can create a view of the table without the primary key column, then run mysqldump on that view.
So if your table "users" has the columns: id, name, email
> CREATE VIEW myView AS SELECT name, email FROM users
Edit: ah I see, I'm not sure if there's any other way then.