DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: date of creation of an index

  1. #1
    Join Date
    May 2002
    Posts
    193
    Sir,

    I would like to know the date when an index was created. What should I query to get this??

    Thanks and Regards,

    K.Diwakar

    [Edited by diwakar on 10-04-2002 at 08:07 AM]

  2. #2
    Join Date
    Sep 2001
    Location
    Düsseldorf, Germany.
    Posts
    588
    Code:
    column "created"
    
    SELECT * FROM dba_objects WHERE object_type = 'INDEX'

  3. #3
    Join Date
    May 2002
    Posts
    193
    Originally posted by Sameer
    Code:
    column "created"
    
    SELECT * FROM dba_objects WHERE object_type = 'INDEX'
    Thanks a lot...the query actualy works out like this:

    select timestamp from dba_objects where object_name='objectname' AND OBJECT_TYPE='INDEX';

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width