Group: Forum Members
Posts: 2K,
Visits: 6.6K
|
Ah. Sorry I wasn't more help. The only time I've had trouble with auto-increment PK is when I have had to move data from one db to another, especially if there are child tables and associated records. If the new table(s) is(are) empty, this is pretty easy as you can tell SQL Server to NOT create the PK, but instead use the one you are loading. If the tables aren't empty (you are merging data), this can be a pain, though I've done it several times. If you are moving data around a lot, I'd avoid auto-incrementing PKs. Just my $0.02.
|