mcconnellj
MIS
My source table has a integer key that sequentially numbers all the records inserted. I copied the records from that table into another with a slightly different structure for further staging. I did not set any constraints/properties on the second table's corresponding integer key, because I wanted the same values so matching between the tables would be simple.
I am now at a step that I want to insert more records to the second table. However, I want the new integer keys to start from the max value and increment by 1 for each record appended.
I tried an alter table statement with the indentity property, but I had no success.
Any other ideas - Thank You!
I am now at a step that I want to insert more records to the second table. However, I want the new integer keys to start from the max value and increment by 1 for each record appended.
I tried an alter table statement with the indentity property, but I had no success.
Any other ideas - Thank You!