Background: I have an oracle table, the table doesn't have any specific column as timestamp while table creation script. This table can have millions of rows.
Example:
Employee {Emp_No, Name, Manager,Division, Role, Region}
My quest: If any updates happened through a job on that table, can i know which all rows got updated. Does oracle have any internal timestamp for each row which i can leverage. Can i use it in query to get all records.
Reason: I need to show my team those ambiguous records weren't updated by the job we all are suspecting.