In Oracle DB you can find out when your table was updated last time by using
SELECT SCN_TO_TIMESTAMP(MAX(ora_rowscn)) from myTable;
Values in ora_rowscn column store in system change number (SCN) format.
Oracle knows what timestamp corresponds to particular scn using sys.smon_scn_time table:
As you can see there are scn, time_dp and some other columns in this table. Records add in sys.smon_scn_time every 5 minutes (approximately). So there is no single-valued relationship between scn and date. But Oracle knows timestamp for each scn.
So, how sys.smon_scn_time table work?
And how Oracle maps scn to timestamp and what accuracy of this mapping?