I acquired a database from another developer. He didn't use auto_incrementers on any tables. They all have primary key ID's, but he did all the incrementing manually, in code.
Can I turn those into Auto_incrementers now?
|
1
|
I acquired a database from another developer. He didn't use auto_incrementers on any tables. They all have primary key ID's, but he did all the incrementing manually, in code. Can I turn those into Auto_incrementers now?
|
||
|
|
|
|
For example, here's a table that has a primary key but is not
You can
Verify this has taken effect:
Outputs:
Note that you have modified the column definition in place, without requiring creating a second column and dropping the original column. The Next you can test that an insert generates a new value:
Outputs:
I tested this on MySQL 5.0.51 on Mac OS X. I also tested with To respond to the error 150 you mentioned in your comment, it's probably a conflict with the foreign key constraints. My apologies, after I tested it I thought it would work. Here are a couple of links that may help to diagnose the problem: |
|||
|
|
|
As long as you have unique integers (or some unique value) in the current PK, you could create a new table, and insert into it with IDENTITY INSERT ON. Then drop the old table, and rename the new table. Don't forget to recreate any indexes. |
||
|
|
|
Yes, easy. Just run a data-definition query to update the tables, adding an AUTO_INCREMENT column. If you have an existing database, be careful to preserve any foreign-key relationships that might already be there on the "artificially created" primary keys. |
||
|
|
|
|
I'm guessing that you don't need to re-increment the existing data so, why can't you just run a simple ALTER TABLE command to change the PK's attributes? Something like:
I've tested this code on my own MySQL database and it works but I have not tried it with any meaningful number of records. Once you've altered the row then you need to reset the increment to a number guaranteed not to interfere with any other records.
Again, untested but I believe it will work. |
||
|
|
|
|
Wow, very nice, thanks a ton. It worked without a hitch on one of my tables. But a second table, i'm getting this error...Error on rename of '.\DBNAME#sql-6c8_62259c' to '.\DBNAME\dealer_master_events' |
||
|
|