In Oracle, is there a way to find out when a particular table was created?
Similarly, is there a way to find out when a particular row was inserted/last updated?
You copy and paste the following code. It will display all the tables with Name and Created Date
SELECT object_name,created FROM user_objects WHERE object_name LIKE '%table_name%' AND object_type = 'TABLE';
Note: Replace '%table_name%' with the table name you are looking for.