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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Table last alter

Re: Table last alter

From: Rauf Sarwar <rs_arwar_at_hotmail.com>
Date: 13 Aug 2002 13:21:37 -0700
Message-ID: <92eeeff0.0208131221.fef17@posting.google.com>


"Matthieu DEGLIN" <mdeglin<remove-me>@partner.auchan.fr> wrote in message news:<ajb26d$dho$1_at_reader1.imaginet.fr>...
> Hi,
> can anybody tell me how to get the date-time of the last 'alter' of a table.
>
> Thank you.
>
> Matthieu

select last_ddl_time, timestamp
from user_objects
where object_name = 'FOO'
and object_type = 'TABLE';

//Rauf Sarwar Received on Tue Aug 13 2002 - 15:21:37 CDT

Original text of this message

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