Skip to content

Instantly share code, notes, and snippets.

@andreia
Created July 30, 2012 23:57
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save andreia/3212102 to your computer and use it in GitHub Desktop.
ORACLE: Find View created date and last modified date
select o.created,o.last_ddl_time
from user_objects o
where o.object_name='MY_VIEW' and o.object_type='VIEW';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment