I have a table in Oracle with some columns that needs to be audited.For every new insert into a table/for every update of the Table, I need to put an entry in audit table for each column inserted/Updated/Deleted.For every update ,suppose I update 1st 2nd column ,then it will create two record in audit with its old value and new value. But I need to do it without using a trigger, is there any other way to do it? Could anyone please help me with this.
Many thanks in advance.