In MS SQL is it possible to share an identity seed across tables? For example I may have 2 tables:
Table: PeopleA
- id
- name
Table: PeopleB
- id
- name
I'd like for PeopleA.id
and PeopleB.id
to always have unique values between themselves. I.e. I want them to share the same Identity seed.
Note: I do not want to hear about table partitioning please, only about if it's possible to share a seed across tables.