Skip to content

Instantly share code, notes, and snippets.

@meoww-bot
Forked from andreia/gist:3212102
Created March 3, 2020 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meoww-bot/8e3ad682be76c48a801c70175849b24a to your computer and use it in GitHub Desktop.
Save meoww-bot/8e3ad682be76c48a801c70175849b24a 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