The rest is more concrete, and boils down to the alternatives being relatively easy.
1. Live with the race condition of (get next ID), then (insert record). (Not actually a problem, surprisingly often.)
2. Wrap (get next ID), (insert record) in a DB transaction. (Transactions are what DBs are good at.)
3. Get ID from an external sequence that never gives the same ID back (usp_intranet_getNextSequenceID)
4. Another elegant option that’s even easier, and also eliminates the race condition:
1 2 3 |
INSERT INTO table1 (ID, field2) OUTPUT INSERTED.ID VALUES ((SELECT ISNULL(MAX(ID), 0) + 1 FROM table1), 'asdf') |
This will return a record with the ID value you inserted, and because it’s one “line” of SQL, it all happens in an implicit transaction.
These options, particularly #4, are not difficult. It also leaves the “magic” (if you can call it that) right out in the open, where everyone can see it. I’ve used #4 now various times, and is my new favorite option.
Views – 2012