Hi sql DBAs,
Is there any way to findout the original value of a column after modified it ?
ie:
I have one table : tbl_transaction_history(tranid, tranhistory,.........)
Original Value is :
tranid = 100
tranhistory = 'This is my test information'
I am just modifying the data from 'This is my test information' to 'This is modified'
update tbl_transaction_history set tranhistory ='This is modified' where tranid = 100
the transaction also successfully committed.
now the modified Value is :
tranid = 100
tranhistory = 'This is modified'
But, we don't used any audit maintenance.
My question is : I just want to know the ORIGINAL value.
thanks in advance
sarvesh s