I\'m trying to run the following query to find views containing a given keyword:
select * from ALL_VIEWS where OWNER = \'SALESDBA\' and TEXT li
You could use TEXT_VC as the column to check criteria against. For example:
select * from ALL_VIEWS where OWNER = 'SALESDBA' and TEXT_VC like '%rownum%';
I hope this helps.