Oracle: find index creation date from systables/information_schema?

tpdi picture tpdi · Sep 3, 2009 · Viewed 37.1k times · Source

Using Oracle, how can I find index names and creation dates from systables/information_schema?

How can I reproduce, from systables/information_schema, the DDL that created the index, e.g., create index indexname on tablename(column_name [, column_name....]) [local];

Answer

Pop picture Pop · Sep 3, 2009

Query DBA_OBJECTS or ALL_OBJECTS for the creation date:

select created from dba_objects where object_type = 'INDEX' and object_name='XXX';

More about it here: