Skip to content

Instantly share code, notes, and snippets.

@andreia
Created July 30, 2012 23:57
Show Gist options
  • Select an option

  • Save andreia/3212102 to your computer and use it in GitHub Desktop.

Select an option

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