Please forgive me if this has been asked, the search function is currently under maintenance.
Here is what I want to do: copy new records inserted in table A to table B.
This is what I have tried:
When a new record is inserted in table A all existing records (but not the new record) is copied to table B.
I tried using a WHERE in the query, but that made no difference.
I am obviously missing something here, but cannot figure out what.
Here is what I want to do: copy new records inserted in table A to table B.
This is what I have tried:
Code:
CREATE TRIGGER [Append Sales] ON dbo.A
FOR INSERT
AS
INSERT INTO dbo.B ( CUSTOMER, ITEM, YR, PERIOD, TRANDATE, SALESPER, LOCATION, CATEGORY, QTYSOLD, COST, SALES )
SELECT CUSTOMER, ITEM, YR, PERIOD, TRANDATE, SALESPER, LOCATION, CATEGORY, QTYSOLD, COST, SALES
FROM dbo.A
When a new record is inserted in table A all existing records (but not the new record) is copied to table B.
I tried using a WHERE in the query, but that made no difference.
I am obviously missing something here, but cannot figure out what.