Hi all,
My database is set up to assign a bigInt identity data type to the record when a new person is entered. The identity starts at 11000 and is incremented by 1.
I have 4 tables that are relationally joined so when a new record is entered into the main table a record with the same identity value needs to be entered into the other tables.
I want to assure that the same number is being entered into each table for the same person. Is there a way to return the identity value and then insert it into the other tables?
Thanks.
My database is set up to assign a bigInt identity data type to the record when a new person is entered. The identity starts at 11000 and is incremented by 1.
I have 4 tables that are relationally joined so when a new record is entered into the main table a record with the same identity value needs to be entered into the other tables.
I want to assure that the same number is being entered into each table for the same person. Is there a way to return the identity value and then insert it into the other tables?
Thanks.