In my database I have a timestamp column. I need to update a row in the table and need to update the timestamp column. When I run an update command
timestamp
I had the same problem, my solution:
UPDATE [table] SET [ANY_COLUMN] = [ANY_COLUMN] WHERE ID = [ID]
like anytime when a table value change the timestamp is recalculated, I update any column to the same value therefore the timestamp is updated