vote up 1 vote down star

My database has a parent table with an auto-incrementing primary key identity 'ID', and a normal 'TIMESTAMP column'. I have child tables with a foreign key that refer to the parent 'ID' column.

I want to write a stored procedure that inserts a new column into both the parent and child databases. How would I set the child 'ID' column to equal the new auto-incremented parent 'ID' column? Does this require a separate:

SELECT TOP 1 * FROM PARENT_TABLE

Or is there another way?

flag

78% accept rate
If you end up using the SCOPE_IDENTITY, make sure you read the remarks in the documentation (msdn.microsoft.com/en-us/library/…); especially if you have a trigger on the table you're inserting into. – Joe L. May 6 at 21:24

2 Answers

vote up 2 vote down check

You can retrieve it from SCOPE_IDENITY(). For example:

declare @myid int
INSERT INTO table (field) VALUES ('value')
SELECT @myid = SCOPE_IDENTITY()
link|flag
vote up 0 vote down

select scope_identity();

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.