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

Thread: view UpdatedDT/CreatedDT

  1. #1
    Join Date
    Feb 2001
    Posts
    28

    Exclamation

    Does anybody know how to get Date & Time stamp when Oracle View was updated/created ?

    Thanks for help, Jan

  2. #2
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    SELECT object_name, created, last_ddl_time AS last_modified
    FROM dba_objects
    WHERE object_type='VIEW
    AND owner = 'THE_OWNER'
    AND object_name = 'THE_VIEW';
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

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