Find in this Blog

Wednesday, January 23, 2019

Check the Views associated with oracle table s

 
Check the Views associated with oracle tables
=============================================

SQL> select  *  from   all_dependencies where  type='VIEW'  and referenced_name like 'DDXTF' and referenced_type = 'TABLE'


  SELECT *  FROM all_dependencies WHERE TYPE = 'VIEW'   AND referenced_type = 'TABLE';

Thanks
Yoonus

No comments:

Post a Comment

Ask Your Questions ?#