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
@@IDENTITYis not valid here. TryINSERT TableB SELECT identity_column_name, 1 FROM inserted;– Aaron Bertrand Nov 29 '12 at 16:49BEGIN TRAN; INSERT tableA; INSERT TableB SELECT SCOPE_IDENTITY(); COMMIT TRAN;– Aaron Bertrand Nov 29 '12 at 17:23