Write an update trigger that checks the current column for the newly inserted value and rolls back the transaction if the values are different.
create trigger dbo.tr_no_updates
on mytable
for update
as
if update(mycolumn)
rollback transaction
source
share