How to find VIEW that uses specific function
I want to find which view uses a specific function. If I type the below I get ORA-00932. How can I do it?
select view_name from dba_views
where upper(text) like upper('%function%');
0