How to find out when a particular table was created in Oracle?
SELECT created FROM dba_objects WHERE object_name = <<your table name>> AND owner = <<owner of the table>> AND object_type=”TABLE” will tell you when a table was created (if you don’t have access to DBA_OBJECTS, you could use ALL_OBJECTS instead assuming you have SELECT privileges on the table). The general answer to getting timestamps from a … Read more