Oracle - When was the Table or Object Created
The dba_objects holds the time stamp when a table or other object was created.
SELECT object_name, object_type, owner CREATED, last_ddl_time, timestamp
FROM dba_objects
WHERE object_name = 'FOO' and object_type = 'TABLE';
OBJECT_NAME OBJECT_TYPE CREATED LAST_DDL_TIME TIMESTAMP
FOO TABLE ME 2009-09-28 14:04:42 2009-09-23:14:07:28
See Also:
Oracle-Dictionary-Views
Status: Published Date: 2017/06/05 14:14:14 Revision: 1.1
Copyright bei Andreas Haack (C) 2014.
Diese Seite wird so wie sie ist zur Verfuegung gestellt, ohne irgenweche Garantien der Verwendbarkeit fuer bestimte Zwecke. Die auf dieser Seiten angebrachten Links liegen ausserhalb der redaktionellen Verantwortung von Andreas Haack und es wird keine Haftung oder Garantie uebernommen. Die Seiten sind Copyright (c) 2014 von Andreas Haack. Kein Teil darf ohne die schriftliche Einverstaendnis von Andreas Haack veroeffentlicht werden.
The page is provided 'as is' , without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fit- ness for a particular purpose and non-infringement. In no event shall Andreas Haack be liable for any claim, damages or other liability. This page is copyrighted property of Andreas Haack. Copyright by Andreas Haack (c) 2014 . No part of this page may be published without written permission for Andreas Haack. A hyper-link may created to this page but NOT to the embedded elements of this page. It may be freely downloaded for private purpose only as long as it is unaltered.