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

Thread: data created tables

  1. #1
    Join Date
    Jul 2002
    Posts
    228

    data created tables

    Hi,
    How can I know what is the date created of a tables??

    I tried with users_tables and dba_tables but there isn't data


    Thanks
    Raf

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Code:
    SQL> select created from dba_objects
      2  where object_name = 'XYZ'
      3  and owner = 'SYSTEM'
      4  /
    
    CREATED
    ---------
    27-MAR-03
    Jeff Hunter

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