Might be a long shot, but I'm looking for a way to see if a row has ever been updated since it was inserted.
Ex.
CREATE TABLE TEST_DATA AS ( SELECT 'A' AS dummy FROM dual UNION SELECT 'B' AS dummy FROM dual ); UPDATE TEST_DATA SET dummy = 'C' WHERE dummy = 'B'; Is there any way I can tell that the 'C' record has been updated?
Also, I have absolutely no control over the data model so I can't add an add timestamp and an update timestamp to the actual table.