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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: How to find out the latest object created in DB?

RE: How to find out the latest object created in DB?

From: Mark Leith <mark_at_cool-tools.co.uk>
Date: Thu, 13 Jun 2002 02:53:57 -0800
Message-ID: <F001.0047CD37.20020613025357@fatcity.com>


How about something like:

select * from
  (select object_name,

          object_type,
          created
     from all_objects

    order by created)
 where rownum = 1;

HTH Mark


 Mark Leith             | T: +44 (0)1905 330 281
 Sales & Marketing      | F: +44 (0)870 127 5283
 Cool Tools UK Ltd      | E: mark_at_cool-tools.co.uk
===================================================
           http://www.cool-tools.co.uk
       Maximising throughput & performance

-----Original Message-----

Zabourdine
Sent: 13 June 2002 11:03
To: Multiple recipients of list ORACLE-L

Hi DBAs,
Does anyone has a script to find out the latest object created in database? Thanks in advance,
Regards,
-Jalil

Do You Yahoo!?
Sign-up for Video Highlights of 2002 FIFA World Cup

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Mark Leith
  INET: mark_at_cool-tools.co.uk

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists

--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Thu Jun 13 2002 - 05:53:57 CDT

Original text of this message

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