I have a bunch (in thousands against different tables) of auto generated INSERT statements. I want to ignore update to one particular column in the table.
For e.g.,
INSERT INTO TABLE1 (col1, col2, col3) VALUES (1, aced00057372002d, 'word')
I want to ignore any updates to col2. Is there a way to achieve this?
Thanks
You’d need to code an INSTEAD OF trigger for each table to handle this.