Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Date and Time of table creation - V$ ?

Re: Date and Time of table creation - V$ ?

From: David Fitzjarrell <oratune_at_aol.com>
Date: Wed, 31 Jan 2001 16:23:31 GMT
Message-ID: <959e5n$i1m$1@nnrp1.deja.com>

In our last gripping episode Stan Novinsky <stan.novinsky_at_jhuapl.edu> wrote:
> Is there a V$ table or any other DBA table that can list when a table
> was created (date/time) ?
>
> Oracle 8.0.5 Server
>
> Thanks
>
> stan.novinsky_at_jhuapl.edu
>
>

Select object_name, created
from dba_objects
where object_type = 'TABLE';

--
David Fitzjarrell
Oracle Certified DBA


Sent via Deja.com
http://www.deja.com/
Received on Wed Jan 31 2001 - 10:23:31 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US