Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table A with an Identity Column which is the primary key. The primary key is at the same time a foreign key that points towards another table B.

I am trying to build an insert trigger that inserts into Table B the identity column that is about to be created in table A and another custom value for example '1'.

I tried using @@Identity but I keep getting a foreign key conflict. Thanks for your help.

create TRIGGER dbo.tr ON dbo.TableA FOR INSERT
AS 
SET NOCOUNT ON
begin
    insert into TableB
    select @@identity, 1;
end
share|improve this question
1  
@@IDENTITY is not valid here. Try INSERT TableB SELECT identity_column_name, 1 FROM inserted; – Aaron Bertrand Nov 29 '12 at 16:49
I tried that as well but there is a foreign key issue. It seems that the identity column is calculated only after the insert, and I need it before to avoid the error... – alexolb Nov 29 '12 at 17:21
Are you sure you're chasing a foreign key to the right table? This should be no different than BEGIN TRAN; INSERT tableA; INSERT TableB SELECT SCOPE_IDENTITY(); COMMIT TRAN; – Aaron Bertrand Nov 29 '12 at 17:23
Table A identity column is a primary, and at the same time a foreign key that points towards Table B. Therefore INSERT tableB should take place before the Insert in TableA to avoid the constraint issue. – alexolb Nov 29 '12 at 17:46
Then you need an INSTEAD OF trigger, not an AFTER trigger. – Aaron Bertrand Nov 29 '12 at 17:52
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.