devxlogo

Displaying the Timestamp in SQL Server 7

Displaying the Timestamp in SQL Server 7

Question:
I want to show my users when a record was last updated. Is there any way to display the timestamp field?

Answer:
The timestamp field is not a good demonstration of this function.

You should approach auditing table changes by either creating a new column called DateLastModified and putting a datetime in it with username, which will give you a “last touched” record. Alternatively, you could build mirrors of your transaction tables and just log the changes in there.

By the way, doing this once is enough. There is no need for before-and-after snapshots, as a series of “afters” will show you what you want to know. By building a separate audit table, you can know what the previous field values were before they were changed, and know who changed them&#151a much stronger audit trail.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist