SQL Server updating a time stamp column

You don’t

The timestamp column is updated automatically. Perhaps you are under the impression that timestamp contains a value relating to the time? It doesn’t, but simply is a number which is updated whenever a value in that record is. Think of it like a row version number.

From MSDN:

The timestamp data type is just an
incrementing number and does not
preserve a date or a time.

Leave a Comment