Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5986871
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T22:44:04+00:00 2026-05-22T22:44:04+00:00

I have a table Product and another table ProductLog . The log table needs

  • 0

I have a table Product and another table ProductLog.

The log table needs to track two columns in the Product table. Each time there is an insert, update or delete on those columns I need to update the log table.

Do I need to write three separate triggers, or can one trigger handle these operations?

I also need to know the type of operation, for example I will need to know if the entry in the log table was because of insert or delete or update. If any one give me an example that would be great.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T22:44:04+00:00Added an answer on May 22, 2026 at 10:44 pm

    You need just one trigger

    CREATE TRIGGER [ProductAfter] ON [Product] AFTER INSERT, UPDATE, DELETE
    

    You can determine which DML statement fires the trigger based on number of records in inserted and deleted tables available within trigger body. For INSERT, deleted is empty, for DELETE, inserted is empty, for UPDATE both inserted and deleted are not empty. For example,

    IF @@ROWCOUNT = 0 -- exit trigger when zero records affected
    BEGIN
       RETURN;
    END;
    DECLARE @type CHAR(1);-- 'U' for update, 'D' for delete, 'I' for insert
    IF EXISTS(SELECT * FROM inserted)
    BEGIN
      IF EXISTS(SELECT * FROM deleted)
      BEGIN
         SET @type ='U';
      END
      ELSE
      BEGIN
         SET @type ='I';
      END
    END
    ELSE
    BEGIN
      SET @type = 'D';
    END;
    

    Also, take a look on Tracking Data Changes, there is another option for tracking changes without triggers.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table containing records of the date and time each product was
i have two tables product product_id product_Name product_Price product_Description product_image category_id another table category
I have a table of product information with many bit columns. This table can
I have a CGridView with columns from a table product => {'product_id','category_id',...} I have
I have a PRODUCTS table, and each product can have multiple attributes so I
I have two columns in my products table, category1, and category2. In my categories
I have a table called productreview with columns productreviewid ,product id ,shopperid ,review,rating I
I have a table name Product and another table name category. Product table has
I have a table product with colums product_id prodcut_name category_id another table category category_id
I have table called product product_id product_Name product_Price product_Description product_image category_id another table category

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.