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 3873100
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T21:59:51+00:00 2026-05-19T21:59:51+00:00

Possible Duplicate: Auditing SQL Server data changes My requirements demand for each row inserted

  • 0

Possible Duplicate:
Auditing SQL Server data changes

My requirements demand for each row inserted and updated in the database to track who made the change (creator/modifier), when the record was created and when it was modified. I have guids for row IDs in all tables, so I thought I would come up with a table rowdata

rowdata: created (datetime), modified (datetime), createdby (string or user id), modifiedby and maybe summary column (string, summary of changes)

and then put some insert/update triggers in place. Do you think is fine or is there another wa (maybe out-of-the-box one)?

My dev environment is .NET 4, so if you think of other options that might come into question, please tell.

  • 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-19T21:59:52+00:00Added an answer on May 19, 2026 at 9:59 pm

    I have similar requirements but went about it by adding these four columns to all the tables that needed the auditing tracked:

    [Create_User] [nvarchar](100) NULL,
    [Create_Date] [datetimeoffset](7) NULL,
    [Modify_User] [nvarchar](100) NULL,
    [Modify_Date] [datetimeoffset](7) NULL,
    

    The INSERT trigger looks like:

    CREATE TRIGGER [SomeSchema].[Some_Table_Insert_Create] ON [SomeSchema].[Some_Table] FOR INSERT AS 
       SET NOCOUNT ON
    
       IF EXISTS(SELECT * FROM INSERTED WHERE Create_User IS NOT NULL)
          BEGIN   
             UPDATE [SomeSchema].[Some_Table] SET 
                Create_Date = SYSDATETIMEOFFSET()
             FROM 
                [SomeSchema].[Some_Table]
             INNER JOIN 
                INSERTED 
             ON 
                [SomeSchema].[Some_Table].Some_Table_Id = INSERTED.Some_Table_Id
          END
       ELSE
          BEGIN
             UPDATE [SomeSchema].[Some_Table] SET 
                Create_User = SUSER_SNAME(),
                Create_Date = SYSDATETIMEOFFSET()
             FROM 
                [SomeSchema].[Some_Table]
             INNER JOIN 
                INSERTED 
             ON 
                [SomeSchema].[Some_Table].Some_Table_Id = INSERTED.Some_Table_Id
          END
    

    And the UPDATE trigger looks like:

    CREATE TRIGGER [SomeSchema].[Some_Table_Update_Modify] ON [SomeSchema].[Some_Table] FOR UPDATE AS 
    
       SET NOCOUNT ON
    
       IF NOT UPDATE (Create_User) AND NOT UPDATE (Create_Date)
          BEGIN
             IF EXISTS(SELECT * FROM INSERTED WHERE Modify_User IS NOT NULL)
                 BEGIN  
                     UPDATE [SomeSchema].[Some_Table] SET 
                         Modify_Date = SYSDATETIMEOFFSET()
                     FROM 
                         [SomeSchema].[Some_Table]
                     INNER JOIN 
                         INSERTED 
                     ON 
                         [SomeSchema].[Some_Table].Some_Table_Id = INSERTED.Some_Table_Id
                 END
             ELSE
                 BEGIN
                     UPDATE [SomeSchema].[Some_Table] SET 
                         Modify_User = SUSER_SNAME(),
                         Modify_Date = SYSDATETIMEOFFSET() 
                     FROM 
                         [SomeSchema].[Some_Table]
                     INNER JOIN 
                         INSERTED 
                     ON 
                         [SomeSchema].[Some_Table].Some_Table_Id = INSERTED.Some_Table_Id
                 END
          END
    

    The SUSER_SNAME() function is useful for use because we are using impersonation in our app and windows authentication to connect to the DB. This may not work in your case.

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

Sidebar

Related Questions

No related questions found

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.