How to find out when an Oracle table was updated the last time

I’m really late to this party but here’s how I did it:

SELECT SCN_TO_TIMESTAMP(MAX(ora_rowscn)) from myTable;

It’s close enough for my purposes.

Leave a Comment